From: Brian Paul Date: Thu, 23 Jul 2015 13:41:09 +0000 (-0600) Subject: st/mesa: add comments on a few sampler view functions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d7cb3f76f5c175c95ffbbec40eea5976493f8681;p=mesa.git st/mesa: add comments on a few sampler view functions Trivial. --- diff --git a/src/mesa/state_tracker/st_texture.c b/src/mesa/state_tracker/st_texture.c index 6beb21e3389..52b094330b9 100644 --- a/src/mesa/state_tracker/st_texture.c +++ b/src/mesa/state_tracker/st_texture.c @@ -462,6 +462,11 @@ st_texture_get_sampler_view(struct st_context *st, return free; } + +/** + * For the given texture object, release any sampler views which belong + * to the calling context. + */ void st_texture_release_sampler_view(struct st_context *st, struct st_texture_object *stObj) @@ -478,6 +483,11 @@ st_texture_release_sampler_view(struct st_context *st, } } + +/** + * Release all sampler views attached to the given texture object, regardless + * of the context. + */ void st_texture_release_all_sampler_views(struct st_context *st, struct st_texture_object *stObj)