summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-08-16 13:05:26 -0600
committerBrian Paul <brianp@vmware.com>2011-08-16 13:05:34 -0600
commit11e4ea0010c3a756cfdaf427c14e104c9a11a645 (patch)
tree981618bfb4dc63bb3b99c48873034cb23fd2598f
parentaf501e2b29c7fb161671dc5b3395eee1d1b16d3f (diff)
mesa: ChooseTextureFormat() returns gl_format, not GLuint
-rw-r--r--src/mesa/main/dd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index e0c5844e193..b5ed9a40c70 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -194,7 +194,7 @@ struct dd_function_table {
* cases, srcFormat and srcType can be GL_NONE.
* Called by glTexImage(), etc.
*/
- GLuint (*ChooseTextureFormat)( struct gl_context *ctx, GLint internalFormat,
+ gl_format (*ChooseTextureFormat)( struct gl_context *ctx, GLint internalFormat,
GLenum srcFormat, GLenum srcType );
/**