diff options
author | Dave Airlie <[email protected]> | 2015-04-08 10:31:14 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-04-08 10:31:42 +1000 |
commit | 6b722c390b484485b3be60057782ee19583a82d1 (patch) | |
tree | d839683e74d735a0894189490fd6cdf257e980f9 /src/gallium | |
parent | f2947807c8c7eae4b98eb37263b8a1d9ebbcafb5 (diff) |
u_tile: fix warnings about incompatible casts.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_tile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/util/u_tile.c b/src/gallium/auxiliary/util/u_tile.c index f5edb8ba6b9..8e199200f7d 100644 --- a/src/gallium/auxiliary/util/u_tile.c +++ b/src/gallium/auxiliary/util/u_tile.c @@ -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] = |