From: Timothy Arceri Date: Thu, 13 Aug 2015 08:42:54 +0000 (+1000) Subject: mesa: remove extern from texture function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8dffa89e013b611cdafbb2cc5216450fa248cb7c;p=mesa.git mesa: remove extern from texture function Reviewed-by: Tapani Pälli --- diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index d35dc12e2cb..a144f950d44 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -5595,7 +5595,7 @@ check_multisample_target(GLuint dims, GLenum target, bool dsa) } -void +static void _mesa_texture_image_multisample(struct gl_context *ctx, GLuint dims, struct gl_texture_object *texObj, GLenum target, GLsizei samples, diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index 1eebaa8b631..bf729daf534 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -199,15 +199,6 @@ _mesa_copy_texture_sub_image(struct gl_context *ctx, GLuint dims, GLsizei width, GLsizei height, const char *caller); -extern void -_mesa_texture_image_multisample(struct gl_context *ctx, GLuint dims, - struct gl_texture_object *texObj, - GLenum target, GLsizei samples, - GLint internalformat, GLsizei width, - GLsizei height, GLsizei depth, - GLboolean fixedsamplelocations, - GLboolean immutable, const char *func); - extern void _mesa_texture_buffer_range(struct gl_context *ctx, struct gl_texture_object *texObj,