Lines Matching refs:Func
68 _mesa_DepthFunc( GLenum func )
74 _mesa_debug(ctx, "glDepthFunc %s\n", _mesa_lookup_enum_by_nr(func));
76 switch (func) {
87 _mesa_error( ctx, GL_INVALID_ENUM, "glDepth.Func" );
91 if (ctx->Depth.Func == func)
95 ctx->Depth.Func = func;
98 ctx->Driver.DepthFunc( ctx, func );
170 ctx->Depth.Func = GL_LESS;