Home
last modified time | relevance | path

Searched refs:StencilMode (Results 1 – 22 of 22) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dstencil_mode.cpp8 static_assert(StencilMode::Never::func == GL_NEVER, "OpenGL enum mismatch");
9 static_assert(StencilMode::Less::func == GL_LESS, "OpenGL enum mismatch");
10 static_assert(StencilMode::Equal::func == GL_EQUAL, "OpenGL enum mismatch");
11 static_assert(StencilMode::LessEqual::func == GL_LEQUAL, "OpenGL enum mismatch");
12 static_assert(StencilMode::Greater::func == GL_GREATER, "OpenGL enum mismatch");
13 static_assert(StencilMode::NotEqual::func == GL_NOTEQUAL, "OpenGL enum mismatch");
14 static_assert(StencilMode::GreaterEqual::func == GL_GEQUAL, "OpenGL enum mismatch");
15 static_assert(StencilMode::Always::func == GL_ALWAYS, "OpenGL enum mismatch");
17 static_assert(underlying_type(StencilMode::Keep) == GL_KEEP, "OpenGL enum mismatch");
18 static_assert(underlying_type(StencilMode::Zero) == GL_ZERO, "OpenGL enum mismatch");
[all …]
H A Dvalue.hpp67 static const constexpr Type Default = { StencilMode::Always::func, 0, ~0u };
85 StencilMode::Op sfail;
86 StencilMode::Op dpfail;
87 StencilMode::Op dppass;
89 … static const constexpr Type Default = { StencilMode::Keep, StencilMode::Keep, StencilMode::Keep };
H A Dstencil_mode.hpp8 class StencilMode { class
60 static StencilMode disabled() { in disabled()
61 return StencilMode { Always(), 0, 0, Keep, Keep, Keep }; in disabled()
H A Dvalue.cpp126 return { static_cast<StencilMode::Op>(sfail), static_cast<StencilMode::Op>(dpfail), in Get()
127 static_cast<StencilMode::Op>(dppass) }; in Get()
H A Dprogram.hpp119 StencilMode stencilMode, in draw()
H A Dcontext.hpp173 void setStencilMode(const StencilMode&);
H A Dcontext.cpp707 void Context::setStencilMode(const StencilMode& stencil) { in setStencilMode()
708 if (stencil.test.is<StencilMode::Always>() && !stencil.mask) { in setStencilMode()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dpaint_parameters.cpp71 gl::StencilMode PaintParameters::stencilModeForClipping(const ClipID& id) const { in stencilModeForClipping()
72 return gl::StencilMode { in stencilModeForClipping()
73 gl::StencilMode::Equal { static_cast<uint32_t>(id.mask.to_ulong()) }, in stencilModeForClipping()
76 gl::StencilMode::Keep, in stencilModeForClipping()
77 gl::StencilMode::Keep, in stencilModeForClipping()
78 gl::StencilMode::Replace in stencilModeForClipping()
H A Drenderer_impl.cpp494 gl::StencilMode { in render()
495 gl::StencilMode::Always(), in render()
498 gl::StencilMode::Keep, in render()
499 gl::StencilMode::Keep, in render()
500 gl::StencilMode::Replace in render()
526 parameters.context.setStencilMode(gl::StencilMode::disabled()); in render()
609 parameters.context.setStencilMode(gl::StencilMode::disabled()); in render()
H A Dpaint_parameters.hpp62 gl::StencilMode stencilModeForClipping(const ClipID&) const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_fill_extrusion_layer.cpp68 parameters.context.setStencilMode(gl::StencilMode::disabled()); in render()
92 gl::StencilMode::disabled(), in render()
191 gl::StencilMode::disabled(), in render()
H A Drender_heatmap_layer.cpp96 : gl::StencilMode::disabled(); in render()
171 gl::StencilMode::disabled(), in render()
H A Drender_hillshade_layer.cpp102 gl::StencilMode::disabled(), in render()
162 gl::StencilMode::disabled(), in render()
H A Drender_symbol_layer.cpp119 gl::StencilMode::disabled(), in render()
251 gl::StencilMode::disabled(), in render()
285 gl::StencilMode::disabled(), in render()
H A Drender_custom_layer.cpp63 glContext.setStencilMode(gl::StencilMode::disabled()); in render()
H A Drender_background_layer.cpp72 gl::StencilMode::disabled(), in render()
H A Drender_raster_layer.cpp116 gl::StencilMode::disabled(), in render()
H A Drender_circle_layer.cpp103 : gl::StencilMode::disabled(), in render()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dcollision_box_program.hpp62 gl::StencilMode stencilMode, in draw()
141 gl::StencilMode stencilMode, in draw()
H A Dprogram.hpp74 gl::StencilMode stencilMode, in draw()
H A Dsymbol_program.hpp312 gl::StencilMode stencilMode, in draw()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_image_source.cpp68 gl::StencilMode::disabled(), in finishRender()