summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-08-07 11:04:05 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-08-07 13:32:43 -0600
commitc8f319138355a5365303e6649a953422ecc88c5f (patch)
tree6873c8bdd03926d67998a62f160cb214221f8876 /src/gallium/auxiliary
parent2c2d6c90fe910e9ba9f84650ce0e80c34f165eac (diff)
gallium: enable the call to r16_put_tile_rgba(), silences warning
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/util/p_tile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/p_tile.c b/src/gallium/auxiliary/util/p_tile.c
index d65e603785..5521a6d08f 100644
--- a/src/gallium/auxiliary/util/p_tile.c
+++ b/src/gallium/auxiliary/util/p_tile.c
@@ -891,7 +891,7 @@ pipe_put_tile_rgba(struct pipe_surface *ps,
/*a8_l8_put_tile_rgba((ushort *) packed, w, h, p, src_stride);*/
break;
case PIPE_FORMAT_R16_SNORM:
- /*r16_put_tile_rgba((short *) packed, w, h, p, src_stride);*/
+ r16_put_tile_rgba((short *) packed, w, h, p, src_stride);
break;
case PIPE_FORMAT_R16G16B16A16_SNORM:
r16g16b16a16_put_tile_rgba((short *) packed, w, h, p, src_stride);