vbo: return VP_NONE from get_program_mode() if running fixed-func vertex program
authorBrian Paul <brianp@vmware.com>
Thu, 21 May 2009 15:52:33 +0000 (09:52 -0600)
committerIan Romanick <ian.d.romanick@intel.com>
Mon, 22 Jun 2009 22:15:19 +0000 (15:15 -0700)
If we're running a vertex program to emulated fixed-function, we still need
to treat vertex arrays/attributes as if we're in fixed-function mode.

This should probably be back-ported to Mesa 7.5 after a bit more testing.
(cherry picked from commit dda82137d28aba846dda73da230871c115e30aaf)

src/mesa/vbo/vbo_context.h

index bf405eb69338fb44851b7111d1c77fc3a8b723f3..5c85161caa52f94f624494b490b70ef12c31eca7 100644 (file)
@@ -102,6 +102,8 @@ static INLINE GLuint get_program_mode( GLcontext *ctx )
 {
    if (!ctx->VertexProgram._Current)
       return VP_NONE;
+   else if (ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram)
+      return VP_NONE;
    else if (ctx->VertexProgram._Current->IsNVProgram)
       return VP_NV;
    else