Home | History | Annotate | Download | only in egl

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);
310 if (drawOp.depth != DEPTHMODE_NONE)
314 DE_ASSERT(drawOp.depth == DEPTHMODE_LESS);
520 void clearGLES2 (const glw::Functions& gl, const tcu::Vec4& color, const float depth, const int stencil)
523 gl.clearDepthf(depth);
552 switch (drawOp.depth)
618 void clear (const glw::Functions& gl, EGLint api, const tcu::Vec4& color, const float depth, const int stencil)
622 case EGL_OPENGL_ES2_BIT: clearGLES2(gl, color, depth, stencil); break;
623 case EGL_OPENGL_ES3_BIT_KHR: clearGLES2(gl, color, depth, stencil); break;