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)
214 throw tcu::NotSupportedError("No depth/stencil buffers", "", __FILE__, __LINE__);
326 // Visualize depth / stencil buffers.
357 GLU_EXPECT_NO_ERROR(gl.getError(), "After depth visualization");
410 // Simulated depth buffer span.
440 float depth = rowAccess.getPixel(x, 0).x();
441 float step = deFloatFloor(depth * (float)DEPTH_STEPS) / (float)(DEPTH_STEPS-1);
500 : TestCaseGroup(context, "depth_stencil_clear", "Depth and stencil clear tests")
506 // iters clears depth stencil scissor masked
507 addChild(new DepthStencilClearCase(m_context, "depth", "", 4, 2, true, false, false, false));