From: Brian Paul Date: Mon, 28 Sep 2009 00:39:48 +0000 (-0600) Subject: mesa: replace function pointer types with void * X-Git-Tag: mesa-7.8~2720^2~112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05e73cc8e23e348ea8243dd2584a44ee5d3a4dd2;p=platform%2Fupstream%2Fmesa.git mesa: replace function pointer types with void * These fields are no longer used and will be removed soon. --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index d7bf768..8468f74 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; };