diff options
author | Ian Romanick <[email protected]> | 2010-02-24 19:25:19 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-03 12:37:05 -0800 |
commit | 24d311c13339978a37885e88a49a990903652339 (patch) | |
tree | 5d454c9faa285037c1c53cfc3fe673efc7b9d9ce /src/mesa/main/drawpix.c | |
parent | bb8c3b1bcc81fd5addc5e214f3efcfdca50c6806 (diff) |
mesa: Eliminate index parameter to _mesa_feedback_vertex
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/drawpix.c')
-rw-r--r-- | src/mesa/main/drawpix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 84cb78612b5..bf36a7e7a49 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -127,7 +127,6 @@ _mesa_DrawPixels( GLsizei width, GLsizei height, _mesa_feedback_vertex( ctx, ctx->Current.RasterPos, ctx->Current.RasterColor, - ctx->Current.RasterIndex, ctx->Current.RasterTexCoords[0] ); } else { @@ -213,7 +212,6 @@ _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height, _mesa_feedback_vertex( ctx, ctx->Current.RasterPos, ctx->Current.RasterColor, - ctx->Current.RasterIndex, ctx->Current.RasterTexCoords[0] ); } else { @@ -293,7 +291,6 @@ _mesa_Bitmap( GLsizei width, GLsizei height, _mesa_feedback_vertex( ctx, ctx->Current.RasterPos, ctx->Current.RasterColor, - ctx->Current.RasterIndex, ctx->Current.RasterTexCoords[0] ); } else { |