From b31b1f44f15f385f61e4cd42c10bb967cd2e5b91 Mon Sep 17 00:00:00 2001 From: Karl Schultz Date: Tue, 24 May 2005 21:06:41 +0000 Subject: [PATCH] Change prototype for TextureMemCpy to return void* (was void). --- src/mesa/main/dd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index e1f3ad5..e4c103c 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(). -- 2.7.4