OSDN Git Service

mesa: Pixel zoom should be ignored in _mesa_meta_draw_tex.
[android-x86/external-mesa.git] / src / mesa / drivers / common / meta.c
index 737ffd3..896e258 100644 (file)
@@ -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;