summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_context.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2019-03-06 16:15:19 -0700
committerBrian Paul <[email protected]>2019-03-11 20:08:16 -0600
commit70a2ede112acb589ee4310a0b3f7476fc1629b51 (patch)
treea3a78ca51a856e077a9bf91ea4740df7999315cb /src/mesa/state_tracker/st_context.c
parent41adb3d6dff63d34e431972b37d304ff0a3070f1 (diff)
st/mesa: rename st_texture_release_sampler_view()
To st_texture_release_context_sampler_view() to be more clear that it's context-specific. Reviewed-by: Neha Bhende <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r--src/mesa/state_tracker/st_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index f30afee75db..289827927e1 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -748,7 +748,7 @@ destroy_tex_sampler_cb(GLuint id, void *data, void *userData)
struct gl_texture_object *texObj = (struct gl_texture_object *) data;
struct st_context *st = (struct st_context *) userData;
- st_texture_release_sampler_view(st, st_texture_object(texObj));
+ st_texture_release_context_sampler_view(st, st_texture_object(texObj));
}