Home
last modified time | relevance | path

Searched refs:createTexture (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dcontext.hpp55 UniqueTexture createTexture();
130 Texture createTexture(const Image& image, in createTexture() function in mbgl::gl::Context
134 return { image.size, createTexture(image.size, image.data.get(), format, unit, type) }; in createTexture()
148 Texture createTexture(const Size size, in createTexture() function in mbgl::gl::Context
152 return { size, createTexture(size, nullptr, format, unit, type) }; in createTexture()
274 … UniqueTexture createTexture(Size size, const void* data, TextureFormat, TextureUnit, TextureType);
H A Dcontext.cpp277 UniqueTexture Context::createTexture() { in createTexture() function in mbgl::gl::Context
530 Context::createTexture(const Size size, const void* data, TextureFormat format, TextureUnit unit, T… in createTexture() function in mbgl::gl::Context
531 auto obj = createTexture(); in createTexture()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile.cpp183 glyphAtlasTexture = context.createTexture(*glyphAtlasImage, 0); in upload()
188 iconAtlasTexture = context.createTexture(*iconAtlasImage, 0); in upload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Doffscreen_texture.cpp28 texture = context.createTexture(size, gl::TextureFormat::RGBA, 0, type); in bind()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dhillshade_bucket.cpp36 dem = context.createTexture(*image); in upload()
H A Draster_bucket.cpp25 texture = context.createTexture(*image); in upload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/geometry/
H A Dline_atlas.cpp133 texture = context.createTexture(image, unit); in upload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dimage_manager.cpp171 atlasTexture = context.createTexture(atlasImage, unit); in upload()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_heatmap_layer.cpp80 … colorRampTexture = parameters.context.createTexture(colorRamp, 1, gl::TextureType::UnsignedByte); in render()