diff options
author | Nian Wu <nian@graphics.(none)> | 2007-02-25 09:40:28 -0800 |
---|---|---|
committer | Nian Wu <nian@graphics.(none)> | 2007-02-25 09:40:28 -0800 |
commit | 675f7f627bec92315bf168a9c872ffc05f88c69c (patch) | |
tree | 19c8f9cc509dc7ce73a0709832f34bf13a2c7425 /progs/demos/texdown.c | |
parent | 51bfb8fc8c78bb066d24e6ecbc20f00af7210386 (diff) | |
parent | c080123998f28d9317331aec7ddfcd1074b29daf (diff) |
Merge git://proxy01.pd.intel.com:9419/git/mesa/mesa into crestline
Diffstat (limited to 'progs/demos/texdown.c')
-rw-r--r-- | progs/demos/texdown.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/demos/texdown.c b/progs/demos/texdown.c index fc98fddb31..5fecd9a148 100644 --- a/progs/demos/texdown.c +++ b/progs/demos/texdown.c @@ -149,7 +149,7 @@ TypeStr(GLenum type) */ #define ALIGN (1<<12) -static unsigned align(unsigned value, unsigned a) +static unsigned long align(unsigned long value, unsigned long a) { return (value + a - 1) & ~(a-1); } @@ -186,10 +186,10 @@ MeasureDownloadRate(void) printf("alloc %p %p\n", orig_texImage, orig_getImage); - texImage = (GLubyte *)align((unsigned)orig_texImage, ALIGN); - getImage = (GLubyte *)align((unsigned)orig_getImage, ALIGN); + texImage = (GLubyte *)align((unsigned long)orig_texImage, ALIGN); + getImage = (GLubyte *)align((unsigned long)orig_getImage, ALIGN); - for (i = 1; !(((unsigned)texImage) & i); i<<=1) + for (i = 1; !(((unsigned long)texImage) & i); i<<=1) ; printf("texture image alignment: %d bytes (%p)\n", i, texImage); |