diff options
| author | Ian Romanick <idr@us.ibm.com> | 2004-10-18 00:00:41 +0000 | 
|---|---|---|
| committer | Ian Romanick <idr@us.ibm.com> | 2004-10-18 00:00:41 +0000 | 
| commit | b430a1ae226308c04dab2a62b5e9127dfed25b2c (patch) | |
| tree | de1a1534de592ced5cdc11295ba1541574ed0d1e /src | |
| parent | 48da4a4a86fb17d972c4aa536a18988a3cdc51c1 (diff) | |
Fix compile errors when DEBUG is defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/drivers/dri/r200/r200_texstate.c | 4 | ||||
| -rw-r--r-- | src/mesa/drivers/dri/tdfx/tdfx_tex.c | 6 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_texstate.c b/src/mesa/drivers/dri/r200/r200_texstate.c index 934ffc1349..1e56c78f9b 100644 --- a/src/mesa/drivers/dri/r200/r200_texstate.c +++ b/src/mesa/drivers/dri/r200/r200_texstate.c @@ -279,7 +279,7 @@ static void r200SetTexImages( r200ContextPtr rmesa,        t->pp_txformat_x |= R200_TEXCOORD_VOLUME;     }     else if (tObj->Target == GL_TEXTURE_CUBE_MAP) { -      ASSERT(log2Width == log2height); +      ASSERT(log2Width == log2Height);        t->pp_txformat |= ((log2Width << R200_TXFORMAT_F5_WIDTH_SHIFT) |                           (log2Height << R200_TXFORMAT_F5_HEIGHT_SHIFT) |                           (R200_TXFORMAT_CUBIC_MAP_ENABLE)); @@ -828,7 +828,7 @@ static void import_tex_obj_state( r200ContextPtr rmesa,     if (texobj->base.tObj->Target == GL_TEXTURE_CUBE_MAP) {        GLuint *cube_cmd = R200_DB_STATE( cube[unit] );        GLuint bytesPerFace = texobj->base.totalSize / 6; -      ASSERT(texobj->totalSize % 6 == 0); +      ASSERT(texobj->base.totalSize % 6 == 0);        cube_cmd[CUBE_PP_CUBIC_FACES] = texobj->pp_cubic_faces;        cube_cmd[CUBE_PP_CUBIC_OFFSET_F1] = texobj->pp_txoffset + 1 * bytesPerFace;        cube_cmd[CUBE_PP_CUBIC_OFFSET_F2] = texobj->pp_txoffset + 2 * bytesPerFace; diff --git a/src/mesa/drivers/dri/tdfx/tdfx_tex.c b/src/mesa/drivers/dri/tdfx/tdfx_tex.c index 4d92739fe6..c6fa3505b3 100644 --- a/src/mesa/drivers/dri/tdfx/tdfx_tex.c +++ b/src/mesa/drivers/dri/tdfx/tdfx_tex.c @@ -212,7 +212,7 @@ tdfxTexGetInfo(const GLcontext *ctx, int w, int h,      /* Hardware only allows a maximum aspect ratio of 8x1, so handle         |ar| > 3 by scaling the image and using an 8x1 aspect ratio */      if (ar >= 0) { -        ASSERT(width >= height); +        ASSERT(w >= h);          lod = logw;          if (ar <= GR_ASPECT_LOG2_8x1) {              t = 256 >> ar; @@ -225,7 +225,7 @@ tdfxTexGetInfo(const GLcontext *ctx, int w, int h,          }      }      else { -        ASSERT(width < height); +        ASSERT(w < h);          lod = logh;          if (ar >= GR_ASPECT_LOG2_1x8) {              s = 256 >> -ar; @@ -595,7 +595,7 @@ convertPalette(FxU32 data[256], const struct gl_color_table *table)      FxU32 r, g, b, a;      GLint i; -    ASSERT(table->TableType == GL_UNSIGNED_BYTE); +    ASSERT(table->Type == GL_UNSIGNED_BYTE);      switch (table->Format) {      case GL_INTENSITY:  | 
