mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
mesa: replace function pointer types with void *
These fields are no longer used and will be removed soon.
This commit is contained in:
parent
adce34e23b
commit
05e73cc8e2
1 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue