maplibre_native 0.8.6

Rust bindings to the MapLibre Native map rendering engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#if defined(MLN_WEBGPU_IMPL_FFI)

#include <mbgl/webgpu/texture2d.hpp>
#include <cstdint>

namespace mln::bridge::texture {
    WGPUTexture getWGPUTexture(const std::shared_ptr<mbgl::webgpu::Texture2D>&);
}

#endif // #if defined(MLN_WEBGPU_IMPL_FFI)