From: Brian Paul Date: Thu, 7 Aug 2008 17:04:05 +0000 (-0600) Subject: gallium: enable the call to r16_put_tile_rgba(), silences warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8f319138355a5365303e6649a953422ecc88c5f;p=mesa.git gallium: enable the call to r16_put_tile_rgba(), silences warning --- diff --git a/src/gallium/auxiliary/util/p_tile.c b/src/gallium/auxiliary/util/p_tile.c index d65e603785c..5521a6d08f4 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);