Home
last modified time | relevance | path

Searched refs:stencil (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-4.2.7-SampleDemos/common/include/demo/Render/
Ddemo_FrameBuffer.h107 const GLclampf depth = 1.0f, const GLclampf stencil = 0.0f);
108 void ClearDepthStencilBuffer(const GLclampf depth = 1.0f, const GLclampf stencil = 0.0f);
115 void ClearStencilBuffer(const GLclampf stencil = 0.0f);
Ddemo_RenderSystem.h63 const GLclampf depth = 1.0f, const GLclampf stencil = 0.0f);
69 … virtual void ClearDepthStencilBuffer(const GLclampf depth = 1.0f, const GLclampf stencil = 0.0f);
/CTR-SDK-4.2.7-SampleDemos/common/libraries/demo/Render/
Ddemo_FrameBuffer.cpp329 const GLclampf blue, const GLclampf alpha, const GLclampf depth, const GLclampf stencil) in ClearColorDepthStencilBuffer() argument
334 glClearStencil(stencil); in ClearColorDepthStencilBuffer()
355 void FrameBuffer::ClearDepthStencilBuffer(const GLclampf depth, const GLclampf stencil) in ClearDepthStencilBuffer() argument
359 glClearStencil(stencil); in ClearDepthStencilBuffer()
370 void FrameBuffer::ClearStencilBuffer(const GLclampf stencil) in ClearStencilBuffer() argument
373 glClearStencil(stencil); in ClearStencilBuffer()
Ddemo_RenderSystem.cpp181 const GLclampf depth, const GLclampf stencil) in ClearColorDepthStencilBuffer() argument
186 depth, stencil); in ClearColorDepthStencilBuffer()
210 void RenderSystem::ClearDepthStencilBuffer(const GLclampf depth, const GLclampf stencil) in ClearDepthStencilBuffer() argument
214 m_CurrentFrameBufferPtr->ClearDepthStencilBuffer(depth, stencil); in ClearDepthStencilBuffer()