summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texstorage.c
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-07-18 14:06:05 +0200
committerSamuel Pitoiset <[email protected]>2017-07-31 13:53:39 +0200
commit14f1613c6f3c892684b3e479e649ce8eefa173ce (patch)
treeeaee630ed61866d9669a0701aa3d217908c2fcbd /src/mesa/main/texstorage.c
parent30c36ff335d1457a7bca77192cdc7029db97b59f (diff)
mesa: rename texstorage() to texstorage_error()
Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/texstorage.c')
-rw-r--r--src/mesa/main/texstorage.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/mesa/main/texstorage.c b/src/mesa/main/texstorage.c
index 8545b06136e..854a2ed5660 100644
--- a/src/mesa/main/texstorage.c
+++ b/src/mesa/main/texstorage.c
@@ -491,8 +491,9 @@ texture_storage_error(struct gl_context *ctx, GLuint dims,
* Helper used by _mesa_TexStorage1/2/3D().
*/
static void
-texstorage(GLuint dims, GLenum target, GLsizei levels, GLenum internalformat,
- GLsizei width, GLsizei height, GLsizei depth, const char *caller)
+texstorage_error(GLuint dims, GLenum target, GLsizei levels,
+ GLenum internalformat, GLsizei width, GLsizei height,
+ GLsizei depth, const char *caller)
{
struct gl_texture_object *texObj;
GET_CURRENT_CONTEXT(ctx);
@@ -578,8 +579,8 @@ void GLAPIENTRY
_mesa_TexStorage1D(GLenum target, GLsizei levels, GLenum internalformat,
GLsizei width)
{
- texstorage(1, target, levels, internalformat, width, 1, 1,
- "glTexStorage1D");
+ texstorage_error(1, target, levels, internalformat, width, 1, 1,
+ "glTexStorage1D");
}
@@ -587,8 +588,8 @@ void GLAPIENTRY
_mesa_TexStorage2D(GLenum target, GLsizei levels, GLenum internalformat,
GLsizei width, GLsizei height)
{
- texstorage(2, target, levels, internalformat, width, height, 1,
- "glTexStorage2D");
+ texstorage_error(2, target, levels, internalformat, width, height, 1,
+ "glTexStorage2D");
}
@@ -596,8 +597,8 @@ void GLAPIENTRY
_mesa_TexStorage3D(GLenum target, GLsizei levels, GLenum internalformat,
GLsizei width, GLsizei height, GLsizei depth)
{
- texstorage(3, target, levels, internalformat, width, height, depth,
- "glTexStorage3D");
+ texstorage_error(3, target, levels, internalformat, width, height, depth,
+ "glTexStorage3D");
}