summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-27 18:39:48 -0600
committerBrian Paul <brianp@vmware.com>2009-09-27 18:39:52 -0600
commit05e73cc8e23e348ea8243dd2584a44ee5d3a4dd2 (patch)
tree2501517fd50f24c889a29919805a83dc501fcdf5 /src
parentadce34e23b431e184c4a511464f5cb0281c74db5 (diff)
mesa: replace function pointer types with void *
These fields are no longer used and will be removed soon.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/mtypes.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index d7bf7689f3..8468f74ca1 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1203,21 +1203,21 @@ struct gl_texture_format
GLuint TexelBytes; /**< Bytes per texel, 0 if compressed format */
- StoreTexImageFunc StoreImage;
+ void *StoreImage;
/**
* \name Texel fetch function pointers
*/
/*@{*/
- FetchTexelFuncC FetchTexel1D;
- FetchTexelFuncC FetchTexel2D;
- FetchTexelFuncC FetchTexel3D;
- FetchTexelFuncF FetchTexel1Df;
- FetchTexelFuncF FetchTexel2Df;
- FetchTexelFuncF FetchTexel3Df;
+ void *FetchTexel1D;
+ void *FetchTexel2D;
+ void *FetchTexel3D;
+ void *FetchTexel1Df;
+ void *FetchTexel2Df;
+ void *FetchTexel3Df;
/*@}*/
- StoreTexelFunc StoreTexel;
+ void *toreTexel;
};