Home
last modified time | relevance | path

Searched refs:OffscreenTexture (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Doffscreen_texture.cpp9 OffscreenTexture::OffscreenTexture(OffscreenTexture&&) = default;
10 OffscreenTexture& OffscreenTexture::operator=(OffscreenTexture&&) = default;
12 class OffscreenTexture::Impl {
65 OffscreenTexture::OffscreenTexture(gl::Context& context, in OffscreenTexture() function in mbgl::OffscreenTexture
72 OffscreenTexture::OffscreenTexture(gl::Context& context, in OffscreenTexture() function in mbgl::OffscreenTexture
80 OffscreenTexture::~OffscreenTexture() = default;
82 void OffscreenTexture::bind() { in bind()
86 PremultipliedImage OffscreenTexture::readStillImage() { in readStillImage()
90 gl::Texture& OffscreenTexture::getTexture() { in getTexture()
94 const Size& OffscreenTexture::getSize() const { in getSize()
H A Doffscreen_texture.hpp12 class OffscreenTexture { class
14 OffscreenTexture(gl::Context&,
17 OffscreenTexture(gl::Context&,
21 ~OffscreenTexture();
22 OffscreenTexture(OffscreenTexture&&);
23 OffscreenTexture& operator=(OffscreenTexture&&);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_heatmap_layer.cpp59 … renderTexture = OffscreenTexture(parameters.context, size, gl::TextureType::HalfFloat); in render()
71 … renderTexture = OffscreenTexture(parameters.context, size, gl::TextureType::UnsignedByte); in render()
H A Drender_fill_extrusion_layer.hpp37 optional<OffscreenTexture> renderTexture;
H A Drender_heatmap_layer.hpp40 optional<OffscreenTexture> renderTexture;
H A Drender_fill_extrusion_layer.cpp58 …renderTexture = OffscreenTexture(parameters.context, size, *parameters.staticData.depthRenderbuffe… in render()
H A Drender_hillshade_layer.cpp129 OffscreenTexture view(parameters.context, { tilesize, tilesize }); in render()