Home
last modified time | relevance | path

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 Dcontext.hpp93 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 Dcontext.cpp27 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 Drenderbuffer.hpp9 template <RenderbufferType renderbufferType>
16 using type = std::integral_constant<RenderbufferType, renderbufferType>;
H A Dtypes.hpp45 enum class RenderbufferType : uint32_t { enum
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/gl/
H A Dheadless_backend.cpp14 : 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 Doffscreen_texture.cpp20 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 Doffscreen_texture.hpp19 gl::Renderbuffer<gl::RenderbufferType::DepthComponent>&,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_static_data.hpp28 optional<gl::Renderbuffer<gl::RenderbufferType::DepthComponent>> depthRenderbuffer;
H A Drenderer_impl.cpp448 …parameters.context.createRenderbuffer<gl::RenderbufferType::DepthComponent>(parameters.staticData.… in render()