diff options
Diffstat (limited to 'src/mesa/swrast/s_accum.c')
-rw-r--r-- | src/mesa/swrast/s_accum.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mesa/swrast/s_accum.c b/src/mesa/swrast/s_accum.c index b0af0f95d4f..5621d0c8aa9 100644 --- a/src/mesa/swrast/s_accum.c +++ b/src/mesa/swrast/s_accum.c @@ -521,13 +521,7 @@ accum_return(GLcontext *ctx, GLfloat value, if (masking) { _swrast_mask_rgba_array(ctx, rb, width, xpos, ypos + i, rgba); } -#if OLD_RENDERBUFFER - if (swrast->Driver.WriteRGBASpan) - swrast->Driver.WriteRGBASpan(ctx, rb, width, xpos, ypos + i, - (const GLchan (*)[4]) rgba, NULL); - else -#endif - rb->PutRow(ctx, rb, width, xpos, ypos + i, rgba, NULL); + rb->PutRow(ctx, rb, width, xpos, ypos + i, rgba, NULL); } } } |