diff options
author | Brian Paul <[email protected]> | 2009-03-11 20:08:37 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-11 20:08:37 -0600 |
commit | 548be3846db59ad43934a159c051b359db6e56db (patch) | |
tree | d9e41327ace4332dd191b92a39617117e2ef8ca4 /src/mesa/swrast/s_atifragshader.c | |
parent | 4dfa3757c58255c3ad8c3fe343541d2aa677f44c (diff) |
mesa: remove some last remnants of GL_MESA_program_debug
Diffstat (limited to 'src/mesa/swrast/s_atifragshader.c')
-rw-r--r-- | src/mesa/swrast/s_atifragshader.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_atifragshader.c b/src/mesa/swrast/s_atifragshader.c index 21cbd3cf37f..458fe18163e 100644 --- a/src/mesa/swrast/s_atifragshader.c +++ b/src/mesa/swrast/s_atifragshader.c @@ -591,8 +591,6 @@ _swrast_exec_fragment_shader(GLcontext * ctx, SWspan *span) /* incoming colors should be floats */ ASSERT(span->array->ChanType == GL_FLOAT); - ctx->_CurrentProgram = GL_FRAGMENT_SHADER_ATI; - for (i = 0; i < span->end; i++) { if (span->array->mask[i]) { init_machine(ctx, &machine, shader, span, i); @@ -608,6 +606,4 @@ _swrast_exec_fragment_shader(GLcontext * ctx, SWspan *span) } } } - - ctx->_CurrentProgram = 0; } |