summaryrefslogtreecommitdiff
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorKarl Schultz <kschultz@freedesktop.org>2005-05-24 21:06:41 +0000
committerKarl Schultz <kschultz@freedesktop.org>2005-05-24 21:06:41 +0000
commitb31b1f44f15f385f61e4cd42c10bb967cd2e5b91 (patch)
treedcf222e90ef20eb5684ee2653f57337d58684b0a /src/mesa/main/dd.h
parent7708b75d722ee6e0cfb1080b98308ff772e021b9 (diff)
Change prototype for TextureMemCpy to return void* (was void).
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index e1f3ad5452..e4c103c55e 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -525,7 +525,7 @@ struct dd_function_table {
* from -- a pointer into client memory or a mesa temporary.
* sz -- nr bytes to copy.
*/
- void (*TextureMemCpy)( void *to, const void *from, size_t sz );
+ void* (*TextureMemCpy)( void *to, const void *from, size_t sz );
/**
* Called by glAreTextureResident().