st_draw_vertices() no longer needs attribs[] array parameter
authorBrian <brian.paul@tungstengraphics.com>
Tue, 25 Sep 2007 22:56:35 +0000 (16:56 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Tue, 25 Sep 2007 22:56:35 +0000 (16:56 -0600)
src/mesa/state_tracker/st_cb_clear.c
src/mesa/state_tracker/st_cb_drawpixels.c
src/mesa/state_tracker/st_draw.c
src/mesa/state_tracker/st_draw.h

index 367ae06..3a70d2f 100644 (file)
@@ -223,10 +223,6 @@ draw_quad(GLcontext *ctx,
           float x0, float y0, float x1, float y1, GLfloat z,
           const GLfloat color[4])
 {
-   static const GLuint attribs[2] = {
-      0, /* pos */
-      3  /* color */
-   };
    GLfloat verts[4][2][4]; /* four verts, two attribs, XYZW */
    GLuint i;
 
@@ -253,7 +249,7 @@ draw_quad(GLcontext *ctx,
       verts[i][1][3] = color[3];
    }
 
-   st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 2, attribs);
+   st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 2);
 }
 
 
index 49120a4..9efd718 100644 (file)
@@ -312,10 +312,6 @@ static void
 draw_quad(GLcontext *ctx, GLfloat x0, GLfloat y0, GLfloat z,
           GLfloat x1, GLfloat y1)
 {
-   static const GLuint attribs[2] = {
-      0, /* pos */
-      8  /* tex0 */
-   };
    GLfloat verts[4][2][4]; /* four verts, two attribs, XYZW */
    GLuint i;
 
@@ -351,7 +347,7 @@ draw_quad(GLcontext *ctx, GLfloat x0, GLfloat y0, GLfloat z,
       verts[i][1][3] = 1.0; /*Q*/
    }
 
-   st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 2, attribs);
+   st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 2);
 }
 
 
@@ -359,11 +355,6 @@ static void
 draw_quad_colored(GLcontext *ctx, GLfloat x0, GLfloat y0, GLfloat z,
                   GLfloat x1, GLfloat y1, const GLfloat *color)
 {
-   static const GLuint attribs[3] = {
-      0, /* pos */
-      1, /* color */
-      8  /* tex0 */
-   };
    GLfloat verts[4][3][4]; /* four verts, three attribs, XYZW */
    GLuint i;
 
@@ -403,7 +394,7 @@ draw_quad_colored(GLcontext *ctx, GLfloat x0, GLfloat y0, GLfloat z,
       verts[i][2][3] = 1.0; /*Q*/
    }
 
-   st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 3, attribs);
+   st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 3);
 }
 
 
index 0f45bf5..ce5bf0c 100644 (file)
@@ -316,7 +316,7 @@ st_draw_vbo(GLcontext *ctx,
 void 
 st_draw_vertices(GLcontext *ctx, unsigned prim,
                  unsigned numVertex, float *verts,
-                 unsigned numAttribs, const unsigned attribs[])
+                 unsigned numAttribs)
 {
    const float width = ctx->DrawBuffer->Width;
    const float height = ctx->DrawBuffer->Height;
@@ -328,7 +328,6 @@ st_draw_vertices(GLcontext *ctx, unsigned prim,
    unsigned i;
 
    assert(numAttribs > 0);
-   assert(attribs[0] == 0); /* position */
 
    /* convert to clip coords */
    for (i = 0; i < numVertex; i++) {
@@ -356,7 +355,7 @@ st_draw_vertices(GLcontext *ctx, unsigned prim,
       velement.vertex_buffer_index = 0;
       velement.src_format = PIPE_FORMAT_R32G32B32A32_FLOAT;
       velement.dst_offset = 0;
-      pipe->set_vertex_element(pipe, i/**attribs[i]**/, &velement);
+      pipe->set_vertex_element(pipe, i, &velement);
    }
 
    /* draw */
index 1fcd1b7..89ee790 100644 (file)
@@ -62,7 +62,7 @@ st_feedback_draw_vbo(GLcontext *ctx,
 void 
 st_draw_vertices(GLcontext *ctx, unsigned prim,
                  unsigned numVertex, float *verts,
-                 unsigned numAttribs, const unsigned attribs[]);
+                 unsigned numAttribs);
 
 
 #endif