Mesa (master): i965: add support for UNSIGNED_INT_10F_11F_11F_REV vertex attribs

Chris Forbes chrisf at kemper.freedesktop.org
Thu Nov 7 20:10:17 UTC 2013


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

Author: Chris Forbes <chrisf at ijw.co.nz>
Date:   Thu Nov  7 23:19:30 2013 +1300

i965: add support for UNSIGNED_INT_10F_11F_11F_REV vertex attribs

Signed-off-by: Chris Forbes <chrisf at ijw.co.nz>
Reviewed-by: Eric Anholt <eric at anholt.net>

---

 src/mesa/drivers/dri/i965/brw_draw_upload.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c
index 4da1b7e..e2002e8 100644
--- a/src/mesa/drivers/dri/i965/brw_draw_upload.c
+++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c
@@ -244,6 +244,8 @@ brw_get_vertex_surface_type(struct brw_context *brw,
       case GL_UNSIGNED_BYTE: return ubyte_types_direct[size];
       default: assert(0); return 0;
       }
+   } else if (glarray->Type == GL_UNSIGNED_INT_10F_11F_11F_REV) {
+      return BRW_SURFACEFORMAT_R11G11B10_FLOAT;
    } else if (glarray->Normalized) {
       switch (glarray->Type) {
       case GL_DOUBLE: return double_types[size];




More information about the mesa-commit mailing list