Mesa (master): r300g: Fix up remaining VAP_CNTL_STATUS writes for big endian.

Michel Dänzer daenzer at kemper.freedesktop.org
Tue Aug 11 07:18:17 UTC 2009


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

Author: Michel Dänzer <daenzer at vmware.com>
Date:   Tue Aug 11 09:16:48 2009 +0200

r300g: Fix up remaining VAP_CNTL_STATUS writes for big endian.

---

 src/gallium/drivers/r300/r300_surface.c |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c
index 22196e3..a093f83 100644
--- a/src/gallium/drivers/r300/r300_surface.c
+++ b/src/gallium/drivers/r300/r300_surface.c
@@ -144,7 +144,11 @@ validate:
         r300_emit_vertex_program_code(r300, &r300_passthrough_vertex_shader, 0);
     } else {
         BEGIN_CS(4);
-        OUT_CS_REG(R300_VAP_CNTL_STATUS, R300_VAP_TCL_BYPASS);
+        OUT_CS_REG(R300_VAP_CNTL_STATUS,
+#ifdef PIPE_ARCH_BIG_ENDIAN
+                   R300_VC_32BIT_SWAP |
+#endif
+                   R300_VAP_TCL_BYPASS);
         OUT_CS_REG(R300_VAP_CNTL, R300_PVS_NUM_SLOTS(5) |
                 R300_PVS_NUM_CNTLRS(5) |
                 R300_PVS_NUM_FPUS(caps->num_vert_fpus) |
@@ -282,7 +286,11 @@ validate:
         r300_emit_vertex_program_code(r300, &r300_passthrough_vertex_shader, 0);
     } else {
         BEGIN_CS(4);
-        OUT_CS_REG(R300_VAP_CNTL_STATUS, R300_VAP_TCL_BYPASS);
+        OUT_CS_REG(R300_VAP_CNTL_STATUS,
+#ifdef PIPE_ARCH_BIG_ENDIAN
+                   R300_VC_32BIT_SWAP |
+#endif
+                   R300_VAP_TCL_BYPASS);
         OUT_CS_REG(R300_VAP_CNTL, R300_PVS_NUM_SLOTS(5) |
                 R300_PVS_NUM_CNTLRS(5) |
                 R300_PVS_NUM_FPUS(caps->num_vert_fpus) |




More information about the mesa-commit mailing list