summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2008-11-04 11:26:03 +0100
committerMichel Dänzer <michel@tungstengraphics.com>2008-11-04 11:26:03 +0100
commit27f1ad466cd9662d638f4a8e59beafc32a8b2a8f (patch)
tree53cce7b08f264381e25eef13f1f4df1879afd104
parentde1a8b68eb10c39a0d4a197107d68d7cc009edb2 (diff)
AIGLX: Don't truncate offset returned by driver texOffsetStart hook on 32 bit.
-rw-r--r--glx/glxdri.c2
1 files changed, 1 insertions, 1 deletions
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
};