diff options
author | Adam Jackson <ajax@redhat.com> | 2021-03-19 13:39:01 -0400 |
---|---|---|
committer | Marge Bot <eric+marge@anholt.net> | 2021-04-13 22:58:58 +0000 |
commit | a2b474c333f39ce00ba1b020d1721404c44b9a86 (patch) | |
tree | 96e48510e7732eeee2ce8cf36b33270887796643 /src/glx/applegl_glx.c | |
parent | e8d10a15f1da00dfec68a8b7e247076d19958851 (diff) | |
download | mesa-a2b474c333f39ce00ba1b020d1721404c44b9a86.tar.gz |
glx: Move {Bind,Release}TexImage from context to screen vtable
All the other operations on drawables live there, be consistent.
Acked-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9992>
Diffstat (limited to 'src/glx/applegl_glx.c')
-rw-r--r-- | src/glx/applegl_glx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/glx/applegl_glx.c b/src/glx/applegl_glx.c index 31da9d0a3e6..fed7b9f667c 100644 --- a/src/glx/applegl_glx.c +++ b/src/glx/applegl_glx.c @@ -114,8 +114,6 @@ static const struct glx_context_vtable applegl_context_vtable = { .unbind = applegl_unbind_context, .wait_gl = applegl_wait_gl, .wait_x = applegl_wait_x, - .bind_tex_image = NULL, - .release_tex_image = NULL, }; struct glx_context * |