diff options
author | Brian Paul <[email protected]> | 2003-11-25 22:45:59 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-11-25 22:45:59 +0000 |
commit | 0f3cd3f894612d156de454178effa4c732f96da7 (patch) | |
tree | 429ee71c2a0153eb471c8ab9795d15757b304908 /src/mesa/main/feedback.c | |
parent | 7df4f95314a91afe92ca7d1eb0effa1dda7ac844 (diff) |
current raster color index should be GLfloat
Diffstat (limited to 'src/mesa/main/feedback.c')
-rw-r--r-- | src/mesa/main/feedback.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/feedback.c b/src/mesa/main/feedback.c index 106f34300a8..69b235a3e57 100644 --- a/src/mesa/main/feedback.c +++ b/src/mesa/main/feedback.c @@ -121,10 +121,10 @@ _mesa_PassThrough( GLfloat token ) * Put a vertex into the feedback buffer. */ void _mesa_feedback_vertex( GLcontext *ctx, - const GLfloat win[4], - const GLfloat color[4], - GLuint index, - const GLfloat texcoord[4] ) + const GLfloat win[4], + const GLfloat color[4], + GLfloat index, + const GLfloat texcoord[4] ) { FEEDBACK_TOKEN( ctx, win[0] ); FEEDBACK_TOKEN( ctx, win[1] ); |