swrast/rgtc: fix rendering issues introduced when fix constants

The max value was wrong and this showed up in the piglit tests.
This commit is contained in:
Dave Airlie
2011-03-02 09:41:38 +10:00
parent c7d239c43b
commit 01d5d1e80e
+1 -1
View File
@@ -443,7 +443,7 @@ _mesa_fetch_texel_2d_f_signed_rg_rgtc2(const struct gl_texture_image *texImage,
#define TAG(x) signed_##x
#define TYPE GLbyte
#define T_MIN (GLbyte)-127
#define T_MAX (GLbyte)127
#define T_MAX (GLbyte)128
#include "texcompress_rgtc_tmp.h"