diff options
author | Zou Nan hai <[email protected]> | 2007-10-08 15:34:03 +0800 |
---|---|---|
committer | Zou Nan hai <[email protected]> | 2007-10-08 15:34:03 +0800 |
commit | ac985708f4820173bdc4509d032bdabeb93a0590 (patch) | |
tree | de667e344f60933b802ca7f718ef233945615bfb /src/mesa/drivers | |
parent | 3d6c4109902b555a3f8076170d572c7caeb6cbfe (diff) |
Only vertex program fix, bypass tnl vertex program
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 2031d556c1b..9266e73570a 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -79,7 +79,7 @@ static void brwUseProgram(GLcontext *ctx, GLuint program) brw->attribs.FragmentProgram->Current = sh_prog->FragmentProgram; ctx->FragmentProgram.Enabled = GL_TRUE; } else - ctx->VertexProgram.Enabled = GL_FALSE; + ctx->FragmentProgram.Enabled = GL_FALSE; } } |