[Mesa-dev] [PATCH 021/101] mesa: rename texstorage() to texstorage_error()
Samuel Pitoiset
samuel.pitoiset at gmail.com
Fri Jul 21 17:39:30 UTC 2017
Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
src/mesa/main/texstorage.c | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/src/mesa/main/texstorage.c b/src/mesa/main/texstorage.c
index 8545b06136..854a2ed566 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");
}
--
2.13.3
More information about the mesa-dev
mailing list