util: Allow util_draw_texquad to draw quads with non-integer coordinates.
[mesa.git] / src / gallium / auxiliary / util / u_draw_quad.c
index 0defd9199749fbee49ee70bef6da17c582d19ebf..8ed3b3c09598992aded60ca0bc0fe6f5540bbdbb 100644 (file)
@@ -82,7 +82,7 @@ util_draw_texquad(struct pipe_context *pipe, struct cso_context *cso,
    uint numAttribs = 2, i, j;
    uint vertexBytes = 4 * (4 * numAttribs * sizeof(float));
    struct pipe_resource *vbuf = NULL;  
-   uint *v = NULL;
+   float *v = NULL;
 
    v = MALLOC(vertexBytes);
    if (v == NULL)
@@ -121,7 +121,7 @@ util_draw_texquad(struct pipe_context *pipe, struct cso_context *cso,
         
    vbuf = pipe_user_buffer_create(pipe->screen, v, vertexBytes,
                                  PIPE_BIND_VERTEX_BUFFER);
-   if (!vbuf) 
+   if (!vbuf)
       goto out;
 
    util_draw_vertex_buffer(pipe, cso, vbuf, 0, PIPE_PRIM_TRIANGLE_FAN, 4, 2);