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

Author: Michel Dänzer <[email protected]>
Date:   Thu Apr 29 10:05:09 2010 +0200

gallium/draw: Fix PPC compiler warning.

---

 src/gallium/auxiliary/draw/draw_vs_ppc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/draw/draw_vs_ppc.c 
b/src/gallium/auxiliary/draw/draw_vs_ppc.c
index 876b598..5df8491 100644
--- a/src/gallium/auxiliary/draw/draw_vs_ppc.c
+++ b/src/gallium/auxiliary/draw/draw_vs_ppc.c
@@ -125,7 +125,7 @@ vs_ppc_run_linear( struct draw_vertex_shader *base,
        */
       shader->func(inputs_soa, outputs_soa, temps_soa,
                   (float (*)[4]) shader->base.immediates,
-                   (const float (*)[4])constants[0],
+                   (float (*)[4])constants[0],
                    ppc_builtin_constants);
 
       /* convert (up to) four output verts from SoA back to AoS format */

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

Reply via email to