Lines Matching defs:depth
102 DEPTHMODE_NONE = 0, //!< No depth test or depth writes
103 DEPTHMODE_LESS, //!< Depth test with less & depth write
123 DepthMode depth;
163 drawOp.depth = (DepthMode)rnd.getInt(0, DEPTHMODE_LAST-1);
316 if (drawOp.depth != DEPTHMODE_NONE)
320 DE_ASSERT(drawOp.depth == DEPTHMODE_LESS);
557 void clearGLES2 (const glw::Functions& gl, const tcu::Vec4& color, const float depth, const int stencil)
560 gl.clearDepthf(depth);
589 switch (drawOp.depth)
655 void clear (const glw::Functions& gl, EGLint api, const tcu::Vec4& color, const float depth, const int stencil)
659 case EGL_OPENGL_ES2_BIT: clearGLES2(gl, color, depth, stencil); break;
660 case EGL_OPENGL_ES3_BIT_KHR: clearGLES2(gl, color, depth, stencil); break;