diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-07 11:04:05 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-07 13:32:43 -0600 |
commit | c8f319138355a5365303e6649a953422ecc88c5f (patch) | |
tree | 6873c8bdd03926d67998a62f160cb214221f8876 | |
parent | 2c2d6c90fe910e9ba9f84650ce0e80c34f165eac (diff) |
gallium: enable the call to r16_put_tile_rgba(), silences warning
-rw-r--r-- | src/gallium/auxiliary/util/p_tile.c | 2 |
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); |