diff options
author | Ian Romanick <[email protected]> | 2015-12-17 17:50:34 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-01-05 13:18:45 -0800 |
commit | ee4676aa57a0b1d4ac7e2f30fd45c36807fe35ea (patch) | |
tree | fcc55b6b0a485395900cbb229c5241f4ce81dfe8 | |
parent | a13e9adbee2f273ced137f96b770aff7181b363c (diff) |
i915/i965: Fix typo in perf_debug message
Trivial
Signed-off-by: Ian Romanick <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_pixel_copy.c | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_pixel_copy.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_pixel_copy.c b/src/mesa/drivers/dri/i915/intel_pixel_copy.c index a7185564e47..213cdbd0f53 100644 --- a/src/mesa/drivers/dri/i915/intel_pixel_copy.c +++ b/src/mesa/drivers/dri/i915/intel_pixel_copy.c @@ -138,7 +138,7 @@ do_blit_copypixels(struct gl_context * ctx, } if (ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F) { - perf_debug("glCopyPixles(): Unsupported pixel zoom\n"); + perf_debug("glCopyPixels(): Unsupported pixel zoom\n"); return false; } diff --git a/src/mesa/drivers/dri/i965/intel_pixel_copy.c b/src/mesa/drivers/dri/i965/intel_pixel_copy.c index 3b5bdb8f928..05c35bd61b3 100644 --- a/src/mesa/drivers/dri/i965/intel_pixel_copy.c +++ b/src/mesa/drivers/dri/i965/intel_pixel_copy.c @@ -142,7 +142,7 @@ do_blit_copypixels(struct gl_context * ctx, } if (ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F) { - perf_debug("glCopyPixles(): Unsupported pixel zoom\n"); + perf_debug("glCopyPixels(): Unsupported pixel zoom\n"); return false; } |