Module: Mesa Branch: master Commit: 0b646ad05e46831c7cda263f4e613e538706e0af URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0b646ad05e46831c7cda263f4e613e538706e0af
Author: Samuel Pitoiset <[email protected]> Date: Fri Jan 27 14:34:52 2017 +0100 st/mesa: make st_texture_get_sampler_view() static Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]> --- src/mesa/state_tracker/st_sampler_view.c | 2 +- src/mesa/state_tracker/st_sampler_view.h | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/mesa/state_tracker/st_sampler_view.c b/src/mesa/state_tracker/st_sampler_view.c index 88d5d1a..c78a987 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 d4c38bc..6825ceb 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); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
