diff options
author | Brian Paul <[email protected]> | 2011-08-16 13:05:26 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-16 13:05:34 -0600 |
commit | 11e4ea0010c3a756cfdaf427c14e104c9a11a645 (patch) | |
tree | 981618bfb4dc63bb3b99c48873034cb23fd2598f /src/mesa/main/dd.h | |
parent | af501e2b29c7fb161671dc5b3395eee1d1b16d3f (diff) |
mesa: ChooseTextureFormat() returns gl_format, not GLuint
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 2 |
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 ); /** |