From dce62509e5d3f7fb8c5890fac51ec2d218c15960 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Wed, 23 Sep 2009 14:44:09 +0800 Subject: [PATCH] mesa: Pixel zoom should be ignored in _mesa_meta_draw_tex. --- src/mesa/drivers/common/meta.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index 737ffd36bd0..896e2587126 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -2109,8 +2109,8 @@ _mesa_meta_draw_tex(GLcontext *ctx, GLfloat x, GLfloat y, GLfloat z, /* vertex positions, texcoords */ { - const GLfloat x1 = x + width * ctx->Pixel.ZoomX; - const GLfloat y1 = y + height * ctx->Pixel.ZoomY; + const GLfloat x1 = x + width; + const GLfloat y1 = y + height; verts[0].x = x; verts[0].y = y; -- 2.11.0