From 4701508ec0b7c3a898c12bad61febc4650422e11 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 27 Jun 2019 18:10:12 +0100 Subject: [PATCH] i915g: fix typo in #if MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Engestrom Reviewed-by: José Roberto de Souza Part-of: --- src/gallium/drivers/i915/i915_resource_texture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/i915/i915_resource_texture.c b/src/gallium/drivers/i915/i915_resource_texture.c index 045dc7bff29..4b78bc51ad6 100644 --- a/src/gallium/drivers/i915/i915_resource_texture.c +++ b/src/gallium/drivers/i915/i915_resource_texture.c @@ -209,7 +209,7 @@ i9x5_scanout_layout(struct i915_texture *tex) i915_texture_set_image_offset(tex, 0, 0, 0, 0); -#if DEBUG_TEXTURE +#if DEBUG_TEXTURES debug_printf("%s size: %d,%d,%d offset %d,%d (0x%x)\n", __func__, pt->width0, pt->height0, util_format_get_blocksize(pt->format), tex->stride, tex->total_nblocksy, @@ -241,7 +241,7 @@ i9x5_display_target_layout(struct i915_texture *tex) tex->total_nblocksy = align_nblocksy(pt->format, pt->height0, 8); tex->tiling = I915_TILE_X; -#if DEBUG_TEXTURE +#if DEBUG_TEXTURES debug_printf("%s size: %d,%d,%d offset %d,%d (0x%x)\n", __func__, pt->width0, pt->height0, util_format_get_blocksize(pt->format), tex->stride, tex->total_nblocksy,