util: Allow util_draw_texquad to draw quads with non-integer coordinates.
authorAlex Corscadden <alexc@vmware.com>
Wed, 9 Mar 2011 11:12:09 +0000 (11:12 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 9 Mar 2011 11:16:49 +0000 (11:16 +0000)
src/gallium/auxiliary/util/u_draw_quad.c

index 0defd91..8ed3b3c 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);