diff options
author | Brian Paul <[email protected]> | 2011-09-17 15:36:13 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-20 20:17:41 -0600 |
commit | 663f61a3e177a443c36f414a16a9d5f94e74135d (patch) | |
tree | 95ad2f920c44ce2335fb89e8a5bb5853c4c129c7 /src/mesa/main/texstore.h | |
parent | ece8d6f25cac9c7ca0237cde3ebdb90e86c6118a (diff) |
mesa: s/_mesa_make_temp_chan_image()/_mesa_make_temp_ubyte_image()
Another step toward eliminating the GLchan type.
Diffstat (limited to 'src/mesa/main/texstore.h')
-rw-r--r-- | src/mesa/main/texstore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texstore.h b/src/mesa/main/texstore.h index d563187098c..24a254ac492 100644 --- a/src/mesa/main/texstore.h +++ b/src/mesa/main/texstore.h @@ -72,8 +72,8 @@ extern GLboolean _mesa_texstore(TEXSTORE_PARAMS); -extern GLchan * -_mesa_make_temp_chan_image(struct gl_context *ctx, GLuint dims, +extern GLubyte * +_mesa_make_temp_ubyte_image(struct gl_context *ctx, GLuint dims, GLenum logicalBaseFormat, GLenum textureBaseFormat, GLint srcWidth, GLint srcHeight, GLint srcDepth, |