mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 15:30:26 +01:00
r300: Converted a few "if (0)" into "if (RADEON_DEBUG & DEBUG_TEXTURE)".
This commit is contained in:
parent
16c503f39a
commit
0dcea4bf8e
3 changed files with 5 additions and 5 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue