u_tile: fix warnings about incompatible casts.
authorDave Airlie <airlied@redhat.com>
Wed, 8 Apr 2015 00:31:14 +0000 (10:31 +1000)
committerDave Airlie <airlied@redhat.com>
Wed, 8 Apr 2015 00:31:42 +0000 (10:31 +1000)
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/gallium/auxiliary/util/u_tile.c

index f5edb8ba6b9f94fa7be6958e49fc5ade854a0b18..8e199200f7dcf25ba5e8d00608c66414251190a6 100644 (file)
@@ -214,7 +214,7 @@ s8x24_get_tile_rgba(const unsigned *src,
    unsigned i, j;
 
    for (i = 0; i < h; i++) {
-      uint32_t *pRow = p;
+      uint32_t *pRow = (uint32_t *)p;
 
       for (j = 0; j < w; j++, pRow += 4) {
          pRow[0] =
@@ -241,7 +241,7 @@ x24s8_get_tile_rgba(const unsigned *src,
    unsigned i, j;
 
    for (i = 0; i < h; i++) {
-      uint32_t *pRow = p;
+      uint32_t *pRow = (uint32_t *)p;
       for (j = 0; j < w; j++, pRow += 4) {
          pRow[0] =
          pRow[1] =
@@ -265,7 +265,7 @@ s8_get_tile_rgba(const unsigned char *src,
    unsigned i, j;
 
    for (i = 0; i < h; i++) {
-      uint32_t *pRow = p;
+      uint32_t *pRow = (uint32_t *)p;
       for (j = 0; j < w; j++, pRow += 4) {
          pRow[0] =
          pRow[1] =