summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/radeonsi/si_texture.c
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2021-05-05 11:37:30 -0400
committerMarge Bot <eric+marge@anholt.net>2021-05-21 17:38:04 +0000
commit078e129d543445b5855ce836d6b536d4133ba66c (patch)
tree2250865f630738bbaf59d54ffadb49b67e206569 /src/gallium/drivers/radeonsi/si_texture.c
parenta7a3de6902f02869e84220857a0713e5d92fef1f (diff)
gallium: remove resource_get_handle from u_resource_vtbl
This is the initial step towards removing u_resource_vtbl. Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10659>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_texture.c')
-rw-r--r--src/gallium/drivers/radeonsi/si_texture.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_texture.c b/src/gallium/drivers/radeonsi/si_texture.c
index 9e13d8163f4..16ee3c121a0 100644
--- a/src/gallium/drivers/radeonsi/si_texture.c
+++ b/src/gallium/drivers/radeonsi/si_texture.c
@@ -1474,7 +1474,6 @@ static void si_auxiliary_texture_destroy(struct pipe_screen *screen,
}
static const struct u_resource_vtbl si_auxiliary_texture_vtbl = {
- NULL, /* get_handle */
si_auxiliary_texture_destroy, /* resource_destroy */
NULL, /* transfer_map */
NULL, /* transfer_flush_region */
@@ -1962,7 +1961,6 @@ static void si_texture_transfer_unmap(struct pipe_context *ctx, struct pipe_tran
}
static const struct u_resource_vtbl si_texture_vtbl = {
- NULL, /* get_handle */
si_texture_destroy, /* resource_destroy */
si_texture_transfer_map, /* transfer_map */
u_default_transfer_flush_region, /* transfer_flush_region */