diff options
author | Jakob Bornecrantz <[email protected]> | 2010-03-25 13:45:42 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-03-26 01:21:52 +0100 |
commit | fe306e7ea5e789adc955653d9be8cd7f8af47264 (patch) | |
tree | f7db836fcde2667acccdb884aa763ce22b8044a0 /src/gallium/auxiliary/draw/draw_vertex.c | |
parent | 84a8347b9f6ef0c1b2519e9bd5fef2ce3c85afb7 (diff) |
draw: Add EMIT_4UB_BGRA format
Needed for i915g, also fixed swizzle in draw_vs_aos_io.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vertex.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vertex.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vertex.c b/src/gallium/auxiliary/draw/draw_vertex.c index 18921ad7179..a4f5e882c0a 100644 --- a/src/gallium/auxiliary/draw/draw_vertex.c +++ b/src/gallium/auxiliary/draw/draw_vertex.c @@ -102,6 +102,13 @@ draw_dump_emitted_vertex(const struct vertex_info *vinfo, const uint8_t *data) debug_printf("%u ", *data++); debug_printf("%u ", *data++); break; + case EMIT_4UB_BGRA: + debug_printf("EMIT_4UB_BGRA:\t"); + debug_printf("%u ", *data++); + debug_printf("%u ", *data++); + debug_printf("%u ", *data++); + debug_printf("%u ", *data++); + break; default: assert(0); } |