diff options
author | Iago Toral Quiroga <[email protected]> | 2014-11-07 12:20:11 +0100 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2015-01-12 11:20:29 +0100 |
commit | c540800aa5521023f28eeb288f0d7bb0b67278f3 (patch) | |
tree | 8a739adeab1c99aa1da7125b6dc9fd6844c41c86 /src/mesa/main/texstore.h | |
parent | 4468386a3c8126cf94691c5f0ee12b0b157f314c (diff) |
mesa: Remove _mesa_make_temp_float_image
Now that we have _mesa_format_convert we don't need this.
This was only used to create temporary RGBA float images in the process
of storing some compressed formats. These can call _mesa_texstore
with a RGBA/float dst to achieve the same goal.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/texstore.h')
-rw-r--r-- | src/mesa/main/texstore.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/main/texstore.h b/src/mesa/main/texstore.h index 6fb2cb7a345..2c974f74afb 100644 --- a/src/mesa/main/texstore.h +++ b/src/mesa/main/texstore.h @@ -81,16 +81,6 @@ _mesa_texstore_can_use_memcpy(struct gl_context *ctx, const struct gl_pixelstore_attrib *srcPacking); -GLfloat * -_mesa_make_temp_float_image(struct gl_context *ctx, GLuint dims, - GLenum logicalBaseFormat, - GLenum textureBaseFormat, - GLint srcWidth, GLint srcHeight, GLint srcDepth, - GLenum srcFormat, GLenum srcType, - const GLvoid *srcAddr, - const struct gl_pixelstore_attrib *srcPacking, - GLbitfield transferOps); - extern void _mesa_store_teximage(struct gl_context *ctx, GLuint dims, |