diff options
author | Brian Paul <[email protected]> | 2004-02-28 19:34:05 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-02-28 19:34:05 +0000 |
commit | aaad687d510b3c933e4ca532e1c12ec723d33588 (patch) | |
tree | 225cc7a6350d32e04f92612bfc4b94d849820186 /src/mesa/drivers | |
parent | d14da2d5aefaaef6afb864098c15c6fc3ca746ee (diff) |
replace color table FloatTable boolean with Type enum
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/glide/fxddtex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/glide/fxddtex.c b/src/mesa/drivers/glide/fxddtex.c index baaba8e6e31..bbf7dfad793 100644 --- a/src/mesa/drivers/glide/fxddtex.c +++ b/src/mesa/drivers/glide/fxddtex.c @@ -407,7 +407,7 @@ convertPalette(const fxMesaContext fxMesa, FxU32 data[256], const struct gl_colo FxU32 r, g, b, a; GLint i; - ASSERT(!table->FloatTable); + ASSERT(table->Type == GL_UNSIGNED_BYTE); switch (table->Format) { case GL_INTENSITY: |