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

Author: Christoph Bumiller <[email protected]>
Date:   Thu Nov 26 16:59:39 2009 +0100

nv50: bswap32 the polygon stipple pattern

The hardware wants the pattern the same way it is
passed to glPolygonStipple.

---

 src/gallium/drivers/nv50/nv50_state_validate.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/nv50/nv50_state_validate.c 
b/src/gallium/drivers/nv50/nv50_state_validate.c
index 799d275..19b8ef0 100644
--- a/src/gallium/drivers/nv50/nv50_state_validate.c
+++ b/src/gallium/drivers/nv50/nv50_state_validate.c
@@ -285,7 +285,7 @@ nv50_state_validate(struct nv50_context *nv50)
                so = so_new(33, 0);
                so_method(so, tesla, NV50TCL_POLYGON_STIPPLE_PATTERN(0), 32);
                for (i = 0; i < 32; i++)
-                       so_data(so, nv50->stipple.stipple[i]);
+                       so_data(so, util_bswap32(nv50->stipple.stipple[i]));
                so_ref(so, &nv50->state.stipple);
                so_ref(NULL, &so);
        }

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to