summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorZou Nan hai <nanhai.zou@intel.com>2007-10-08 15:34:03 +0800
committerZou Nan hai <nanhai.zou@intel.com>2007-10-08 15:34:03 +0800
commitac985708f4820173bdc4509d032bdabeb93a0590 (patch)
treede667e344f60933b802ca7f718ef233945615bfb /src/mesa
parent3d6c4109902b555a3f8076170d572c7caeb6cbfe (diff)
Only vertex program fix, bypass tnl vertex program
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_context.c2
-rw-r--r--src/mesa/main/texenvprogram.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c
index 2031d556c1..9266e73570 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;
}
}
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c
index 72b54b27d9..126a9e1179 100644
--- a/src/mesa/main/texenvprogram.c
+++ b/src/mesa/main/texenvprogram.c
@@ -1239,7 +1239,7 @@ _mesa_UpdateTexEnvProgram( GLcontext *ctx )
/* If a conventional fragment program/shader isn't in effect... */
if (!ctx->FragmentProgram._Enabled &&
- !ctx->Shader.CurrentProgram) {
+ (!ctx->Shader.CurrentProgram || !ctx->Shader.CurrentProgram->FragmentProgram)) {
make_state_key(ctx, &key);
hash = hash_key(&key);