diff options
author | Brian Paul <[email protected]> | 2011-06-17 13:22:43 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-06-17 13:44:59 -0600 |
commit | befaab8fa12eb4f628e21ffa75e523ac5eb7fbc2 (patch) | |
tree | 8a03fb7d99b2419528f91d727b4b43956a23287a | |
parent | cb5a5f055b6a9f05aed927d28a242bde81dd5bfc (diff) |
st/mesa: move comment for ChooseTextureFormat() to right place
-rw-r--r-- | src/mesa/state_tracker/st_format.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/state_tracker/st_format.c b/src/mesa/state_tracker/st_format.c index 35835712547..bd17448e6e8 100644 --- a/src/mesa/state_tracker/st_format.c +++ b/src/mesa/state_tracker/st_format.c @@ -1188,9 +1188,6 @@ st_choose_renderbuffer_format(struct pipe_screen *screen, } -/** - * Called via ctx->Driver.chooseTextureFormat(). - */ gl_format st_ChooseTextureFormat_renderable(struct gl_context *ctx, GLint internalFormat, GLenum format, GLenum type, GLboolean renderable) @@ -1231,6 +1228,10 @@ st_ChooseTextureFormat_renderable(struct gl_context *ctx, GLint internalFormat, return st_pipe_format_to_mesa_format(pFormat); } + +/** + * Called via ctx->Driver.ChooseTextureFormat(). + */ gl_format st_ChooseTextureFormat(struct gl_context *ctx, GLint internalFormat, GLenum format, GLenum type) |