r300: Converted a few "if (0)" into "if (RADEON_DEBUG & DEBUG_TEXTURE)".

This commit is contained in:
Oliver McFadden 2007-05-09 21:41:03 +00:00
parent 16c503f39a
commit 0dcea4bf8e
3 changed files with 5 additions and 5 deletions

View file

@ -510,7 +510,7 @@ r300ValidateClientStorage(GLcontext * ctx, GLenum target,
{
r300ContextPtr rmesa = R300_CONTEXT(ctx);
if (0)
if (RADEON_DEBUG & DEBUG_TEXTURE)
fprintf(stderr, "intformat %s format %s type %s\n",
_mesa_lookup_enum_by_nr(internalFormat),
_mesa_lookup_enum_by_nr(format),
@ -567,7 +567,7 @@ r300ValidateClientStorage(GLcontext * ctx, GLenum target,
GLint srcRowStride = _mesa_image_row_stride(packing, srcWidth,
format, type);
if (0)
if (RADEON_DEBUG & DEBUG_TEXTURE)
fprintf(stderr, "%s: srcRowStride %d/%x\n",
__FUNCTION__, srcRowStride, srcRowStride);

View file

@ -255,7 +255,7 @@ static void r300UploadRectSubImage(r300ContextPtr rmesa,
/* Copy texdata to dma:
*/
if (0)
if (RADEON_DEBUG & DEBUG_TEXTURE)
fprintf(stderr,
"%s: src_pitch %d dst_pitch %d\n",
__FUNCTION__, src_pitch, dstPitch);

View file

@ -296,7 +296,7 @@ static void r300SetTexImages(r300ContextPtr rmesa,
}
assert(size > 0);
if (0)
if (RADEON_DEBUG & DEBUG_TEXTURE)
fprintf(stderr, "w=%d h=%d d=%d tb=%d intFormat=%d\n",
texImage->Width, texImage->Height,
texImage->Depth,
@ -325,7 +325,7 @@ static void r300SetTexImages(r300ContextPtr rmesa,
t->image[0][i].height = size / t->image[0][i].width;
}
if (0)
if (RADEON_DEBUG & DEBUG_TEXTURE)
fprintf(stderr,
"level %d: %dx%d x=%d y=%d w=%d h=%d size=%d at %d\n",
i, texImage->Width, texImage->Height,