diff options
author | Brian Paul <[email protected]> | 2009-09-28 21:55:47 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-28 21:55:47 -0600 |
commit | e2e7bd6c1f979179e6840cf0e8db72fc72751650 (patch) | |
tree | c874886b2d5d31f52de100f844880a83e4b88535 /src/mesa/main/texstore.c | |
parent | 0a306daf71588fc4ccfdc14450f8cd4ce00f9833 (diff) |
mesa: move StoreTexImageFunc typedef to .c file
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r-- | src/mesa/main/texstore.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index e8c3e23b5bf..ca298bb2371 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -77,6 +77,12 @@ enum { /** + * Texture image storage function. + */ +typedef GLboolean (*StoreTexImageFunc)(TEXSTORE_PARAMS); + + +/** * Return GL_TRUE if the given image format is one that be converted * to another format by swizzling. */ @@ -3250,7 +3256,7 @@ texstore_funcs[MESA_FORMAT_COUNT] = /** * Return the StoreTexImageFunc pointer to store an image in the given format. */ -StoreTexImageFunc +static StoreTexImageFunc _mesa_get_texstore_func(gl_format format) { GLuint i; |