summaryrefslogtreecommitdiff
path: root/src/mesa/vbo/vbo_context.h
diff options
context:
space:
mode:
authorBrian <brian@yutani.localnet.net>2007-02-22 09:10:24 -0700
committerBrian <brian@yutani.localnet.net>2007-02-22 09:10:24 -0700
commit6ec7484ae8190fb8e61eae9a016b67db65011731 (patch)
treeb0f6299e860e5f4a47c8e7e6e4997540462b6ea2 /src/mesa/vbo/vbo_context.h
parent96abc6bf72fe0ca6f2aceb87aa9324afe72d67ac (diff)
use ctx->VertexProgram._Current instead of ctx->VertexProgram._Enabled
Diffstat (limited to 'src/mesa/vbo/vbo_context.h')
-rw-r--r--src/mesa/vbo/vbo_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/vbo/vbo_context.h b/src/mesa/vbo/vbo_context.h
index 0dc1019b39..013f81bdd5 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;