Searched refs:RenderbufferType (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 D | context.hpp | 93 template <RenderbufferType type> 95 static_assert(type == RenderbufferType::RGBA || in createRenderbuffer() 96 type == RenderbufferType::DepthStencil || in createRenderbuffer() 97 type == RenderbufferType::DepthComponent, in createRenderbuffer() 102 Framebuffer createFramebuffer(const Renderbuffer<RenderbufferType::RGBA>&, 103 const Renderbuffer<RenderbufferType::DepthStencil>&); 104 Framebuffer createFramebuffer(const Renderbuffer<RenderbufferType::RGBA>&); 106 const Renderbuffer<RenderbufferType::DepthStencil>&); 109 const Renderbuffer<RenderbufferType::DepthComponent>&); 277 UniqueRenderbuffer createRenderbuffer(RenderbufferType, Size size);
|
| H A D | context.cpp | 27 static_assert(underlying_type(RenderbufferType::RGBA) == GL_RGBA8, "OpenGL type mismatch"); 29 static_assert(underlying_type(RenderbufferType::RGBA) == GL_RGBA8_OES, "OpenGL type mismatch"); 32 static_assert(underlying_type(RenderbufferType::DepthStencil) == GL_DEPTH24_STENCIL8, "OpenGL type … 34 static_assert(underlying_type(RenderbufferType::DepthStencil) == GL_DEPTH24_STENCIL8_OES, "OpenGL t… 37 static_assert(underlying_type(RenderbufferType::DepthComponent) == GL_DEPTH_COMPONENT, "OpenGL type… 39 static_assert(underlying_type(RenderbufferType::DepthComponent) == GL_DEPTH_COMPONENT16, "OpenGL ty… 374 UniqueRenderbuffer Context::createRenderbuffer(const RenderbufferType type, const Size size) { in createRenderbuffer() 453 const Renderbuffer<RenderbufferType::DepthStencil>& depthStencil) { in bindDepthStencilRenderbuffer() 468 Context::createFramebuffer(const Renderbuffer<RenderbufferType::RGBA>& color, in createFramebuffer() 469 const Renderbuffer<RenderbufferType::DepthStencil>& depthStencil) { in createFramebuffer() [all …]
|
| H A D | renderbuffer.hpp | 9 template <RenderbufferType renderbufferType> 16 using type = std::integral_constant<RenderbufferType, renderbufferType>;
|
| H A D | types.hpp | 45 enum class RenderbufferType : uint32_t { enum
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/gl/ |
| H A D | headless_backend.cpp | 14 : color(context.createRenderbuffer<gl::RenderbufferType::RGBA>(size_)), in View() 15 depthStencil(context.createRenderbuffer<gl::RenderbufferType::DepthStencil>(size_)), in View() 19 gl::Renderbuffer<gl::RenderbufferType::RGBA> color; 20 gl::Renderbuffer<gl::RenderbufferType::DepthStencil> depthStencil;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | offscreen_texture.cpp | 20 gl::Renderbuffer<gl::RenderbufferType::DepthComponent>& depth_, in Impl() 61 gl::Renderbuffer<gl::RenderbufferType::DepthComponent>* depth = nullptr; 74 … gl::Renderbuffer<gl::RenderbufferType::DepthComponent>& renderbuffer, in OffscreenTexture()
|
| H A D | offscreen_texture.hpp | 19 gl::Renderbuffer<gl::RenderbufferType::DepthComponent>&,
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/ |
| H A D | render_static_data.hpp | 28 optional<gl::Renderbuffer<gl::RenderbufferType::DepthComponent>> depthRenderbuffer;
|
| H A D | renderer_impl.cpp | 448 …parameters.context.createRenderbuffer<gl::RenderbufferType::DepthComponent>(parameters.staticData.… in render()
|