diff options
author | Brian <[email protected]> | 2007-02-22 09:10:24 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-22 09:10:24 -0700 |
commit | 6ec7484ae8190fb8e61eae9a016b67db65011731 (patch) | |
tree | b0f6299e860e5f4a47c8e7e6e4997540462b6ea2 /src/mesa/vbo | |
parent | 96abc6bf72fe0ca6f2aceb87aa9324afe72d67ac (diff) |
use ctx->VertexProgram._Current instead of ctx->VertexProgram._Enabled
Diffstat (limited to 'src/mesa/vbo')
-rw-r--r-- | src/mesa/vbo/vbo_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |