gallium: enable the call to r16_put_tile_rgba(), silences warning
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 7 Aug 2008 17:04:05 +0000 (11:04 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 7 Aug 2008 19:32:43 +0000 (13:32 -0600)
src/gallium/auxiliary/util/p_tile.c

index d65e603785ce5e67a3f2202de9ad286187f73e05..5521a6d08f4aed2a443c2f0cb4e9ff51ae2f74bb 100644 (file)
@@ -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);