From 27f1ad466cd9662d638f4a8e59beafc32a8b2a8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Tue, 4 Nov 2008 11:26:03 +0100 Subject: [PATCH] AIGLX: Don't truncate offset returned by driver texOffsetStart hook on 32 bit. --- glx/glxdri.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glx/glxdri.c b/glx/glxdri.c index c43e7c383..50a51790f 100644 --- a/glx/glxdri.c +++ b/glx/glxdri.c @@ -103,7 +103,7 @@ struct __GLXDRIdrawable { #ifdef __DRI_TEX_OFFSET GLint texname; __GLXDRIcontext *ctx; - unsigned long offset; + unsigned long long offset; DamagePtr pDamage; #endif };