diff options
author | Bastiaan Olij <mux213@gmail.com> | 2023-06-13 09:28:35 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2023-06-14 09:58:08 +1000 |
commit | 6dd47e232b64cb093ddb79eac0b7891531deea62 (patch) | |
tree | 5d016e6105b5e26c7ee628344d85331b4fa01452 /drivers/vulkan/rendering_device_vulkan.cpp | |
parent | dcd31a25b473e8c6049224e586418de0f1ecdbf3 (diff) | |
download | redot-engine-6dd47e232b64cb093ddb79eac0b7891531deea62.tar.gz |
Expose RD::texture_native_handle
Diffstat (limited to 'drivers/vulkan/rendering_device_vulkan.cpp')
-rw-r--r-- | drivers/vulkan/rendering_device_vulkan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vulkan/rendering_device_vulkan.cpp b/drivers/vulkan/rendering_device_vulkan.cpp index 4e43c14476..0832a07f51 100644 --- a/drivers/vulkan/rendering_device_vulkan.cpp +++ b/drivers/vulkan/rendering_device_vulkan.cpp @@ -2882,7 +2882,7 @@ Size2i RenderingDeviceVulkan::texture_size(RID p_texture) { return Size2i(tex->width, tex->height); } -uint64_t RenderingDeviceVulkan::texture_native_handle(RID p_texture) { +uint64_t RenderingDeviceVulkan::texture_get_native_handle(RID p_texture) { _THREAD_SAFE_METHOD_ Texture *tex = texture_owner.get_or_null(p_texture); |