Mesa (master): st/mesa: write vertices directly into the buffer in glDrawPixels

Marek Olšák mareko at kemper.freedesktop.org
Wed Apr 18 14:29:09 UTC 2012


Module: Mesa
Branch: master
Commit: 6c1fbe912f1623cbcf474a0b985841e44122a911
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c1fbe912f1623cbcf474a0b985841e44122a911

Author: Marek Olšák <maraeo at gmail.com>
Date:   Fri Apr 13 20:37:41 2012 +0200

st/mesa: write vertices directly into the buffer in glDrawPixels

---

 src/mesa/state_tracker/st_cb_drawpixels.c |   32 +++++++++++++---------------
 1 files changed, 15 insertions(+), 17 deletions(-)

diff --git a/src/mesa/state_tracker/st_cb_drawpixels.c b/src/mesa/state_tracker/st_cb_drawpixels.c
index 5229cce..5e078a8 100644
--- a/src/mesa/state_tracker/st_cb_drawpixels.c
+++ b/src/mesa/state_tracker/st_cb_drawpixels.c
@@ -555,7 +555,15 @@ draw_quad(struct gl_context *ctx, GLfloat x0, GLfloat y0, GLfloat z,
 {
    struct st_context *st = st_context(ctx);
    struct pipe_context *pipe = st->pipe;
-   GLfloat verts[4][3][4]; /* four verts, three attribs, XYZW */
+   GLfloat (*verts)[3][4]; /* four verts, three attribs, XYZW */
+   struct pipe_resource *buf = NULL;
+   unsigned offset;
+
+   u_upload_alloc(st->uploader, 0, 4 * sizeof(verts[0]), &offset, &buf,
+		  (void**)&verts);
+   if (!buf) {
+      return;
+   }
 
    /* setup vertex data */
    {
@@ -619,22 +627,12 @@ draw_quad(struct gl_context *ctx, GLfloat x0, GLfloat y0, GLfloat z,
       }
    }
 
-   {
-      struct pipe_resource *buf = NULL;
-      unsigned offset;
-
-      u_upload_data(st->uploader, 0, sizeof(verts), verts, &offset, &buf);
-      if (!buf) {
-         return;
-      }
-
-      u_upload_unmap(st->uploader);
-      util_draw_vertex_buffer(pipe, st->cso_context, buf, offset,
-                              PIPE_PRIM_QUADS,
-                              4,  /* verts */
-                              3); /* attribs/vert */
-      pipe_resource_reference(&buf, NULL);
-   }
+   u_upload_unmap(st->uploader);
+   util_draw_vertex_buffer(pipe, st->cso_context, buf, offset,
+			   PIPE_PRIM_QUADS,
+			   4,  /* verts */
+			   3); /* attribs/vert */
+   pipe_resource_reference(&buf, NULL);
 }
 
 




More information about the mesa-commit mailing list