From: Samuel Pitoiset Date: Fri, 27 Jan 2017 13:34:52 +0000 (+0100) Subject: st/mesa: make st_texture_get_sampler_view() static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b646ad05e46831c7cda263f4e613e538706e0af;p=mesa.git st/mesa: make st_texture_get_sampler_view() static Signed-off-by: Samuel Pitoiset Reviewed-by: Nicolai Hähnle --- diff --git a/src/mesa/state_tracker/st_sampler_view.c b/src/mesa/state_tracker/st_sampler_view.c index 88d5d1aae2f..c78a987486e 100644 --- a/src/mesa/state_tracker/st_sampler_view.c +++ b/src/mesa/state_tracker/st_sampler_view.c @@ -46,7 +46,7 @@ * If none is found an empty slot is initialized with a * template and returned instead. */ -struct pipe_sampler_view ** +static struct pipe_sampler_view ** st_texture_get_sampler_view(struct st_context *st, struct st_texture_object *stObj) { diff --git a/src/mesa/state_tracker/st_sampler_view.h b/src/mesa/state_tracker/st_sampler_view.h index d4c38bccdce..6825cebdf6d 100644 --- a/src/mesa/state_tracker/st_sampler_view.h +++ b/src/mesa/state_tracker/st_sampler_view.h @@ -57,10 +57,6 @@ st_create_texture_sampler_view(struct pipe_context *pipe, } -extern struct pipe_sampler_view ** -st_texture_get_sampler_view(struct st_context *st, - struct st_texture_object *stObj); - extern void st_texture_release_sampler_view(struct st_context *st, struct st_texture_object *stObj);