From 43824acb4ebc8c365232ebc1d149cd0e0afc5fa3 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Sat, 28 Jan 2006 17:52:05 +0000 Subject: [PATCH] Build fixes --- src/mesa/drivers/dri/i915/intel_pixel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i915/intel_pixel.c b/src/mesa/drivers/dri/i915/intel_pixel.c index f629b1fbb45..ee1e2f94074 100644 --- a/src/mesa/drivers/dri/i915/intel_pixel.c +++ b/src/mesa/drivers/dri/i915/intel_pixel.c @@ -359,7 +359,7 @@ intelTryDrawPixels( GLcontext *ctx, if (!check_color(ctx, type, format, unpack, pixels, size, pitch)) { return GL_FALSE; } - if (!check_color_per_fragment_ops(ctx)) { + if (!intel_check_color_per_fragment_ops(ctx)) { return GL_FALSE; } if (!ctx->Current.RasterPosValid) @@ -464,7 +464,7 @@ static GLboolean intelTryCopyPixels( GLcontext *ctx, /* Copypixels can be more than a straight copy. Ensure all the * extra operations are disabled: */ - if (!check_color_per_fragment_ops(ctx) || + if (!intel_check_color_per_fragment_ops(ctx) || ctx->_ImageTransferState || ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F)