util: Allow util_draw_texquad to draw quads with non-integer coordinates.

This commit is contained in:
Alex Corscadden 2011-03-09 11:12:09 +00:00 committed by José Fonseca
parent 0ffd603e17
commit eb2e8167fa
1 changed files with 2 additions and 2 deletions

View 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);