Home | History | Annotate | Download | only in functional

Lines Matching defs:depth

21  * \brief Depth and stencil clear tests.
99 TCU_FAIL("Can't map depth buffer format");
112 TCU_FAIL("Can't map depth buffer format");
121 DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked);
145 DepthStencilClearCase::DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked)
147 , m_testDepth (depth)
211 throw tcu::NotSupportedError("No depth/stencil buffers", "", __FILE__, __LINE__);
323 // Visualize depth / stencil buffers.
354 GLU_EXPECT_NO_ERROR(gl.getError(), "After depth visualization");
407 // Simulated depth buffer span.
437 float depth = rowAccess.getPixel(x, 0).x();
438 float step = deFloatFloor(depth * (float)DEPTH_STEPS) / (float)(DEPTH_STEPS-1);
497 : TestCaseGroup(context, "depth_stencil_clear", "Depth and stencil clear tests")
503 // iters clears depth stencil scissor masked
504 addChild(new DepthStencilClearCase(m_context, "depth", "", 4, 2, true, false, false, false));