From: Brian Date: Thu, 22 Feb 2007 16:10:24 +0000 (-0700) Subject: use ctx->VertexProgram._Current instead of ctx->VertexProgram._Enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6ec7484ae8190fb8e61eae9a016b67db65011731;p=mesa.git use ctx->VertexProgram._Current instead of ctx->VertexProgram._Enabled --- diff --git a/src/mesa/vbo/vbo_context.h b/src/mesa/vbo/vbo_context.h index 0dc1019b39f..013f81bdd5c 100644 --- a/src/mesa/vbo/vbo_context.h +++ b/src/mesa/vbo/vbo_context.h @@ -96,9 +96,9 @@ enum { static INLINE GLuint get_program_mode( GLcontext *ctx ) { - if (!ctx->VertexProgram._Enabled) + if (!ctx->VertexProgram._Current) return VP_NONE; - else if (ctx->VertexProgram.Current->IsNVProgram) + else if (ctx->VertexProgram._Current->IsNVProgram) return VP_NV; else return VP_ARB;