diff options
author | clayjohn <claynjohn@gmail.com> | 2021-08-03 00:07:32 -0700 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2021-11-06 12:43:19 -0700 |
commit | 0eff109a21fb5c0bd031a91c540983e77e75343b (patch) | |
tree | f7ec8b72dc8ceb0bc748fdc46892cc71af2ab12f /drivers/vulkan/rendering_device_vulkan.h | |
parent | af80bc8abecc30c77901967281679e380fb9f952 (diff) | |
download | redot-engine-0eff109a21fb5c0bd031a91c540983e77e75343b.tar.gz |
Added SSIL post processing effect
Diffstat (limited to 'drivers/vulkan/rendering_device_vulkan.h')
-rw-r--r-- | drivers/vulkan/rendering_device_vulkan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vulkan/rendering_device_vulkan.h b/drivers/vulkan/rendering_device_vulkan.h index cf0b725cfc..f760182fdb 100644 --- a/drivers/vulkan/rendering_device_vulkan.h +++ b/drivers/vulkan/rendering_device_vulkan.h @@ -1037,7 +1037,7 @@ public: virtual RID texture_create(const TextureFormat &p_format, const TextureView &p_view, const Vector<Vector<uint8_t>> &p_data = Vector<Vector<uint8_t>>()); virtual RID texture_create_shared(const TextureView &p_view, RID p_with_texture); - virtual RID texture_create_shared_from_slice(const TextureView &p_view, RID p_with_texture, uint32_t p_layer, uint32_t p_mipmap, TextureSliceType p_slice_type = TEXTURE_SLICE_2D); + virtual RID texture_create_shared_from_slice(const TextureView &p_view, RID p_with_texture, uint32_t p_layer, uint32_t p_mipmap, uint32_t p_mipmaps = 1, TextureSliceType p_slice_type = TEXTURE_SLICE_2D); virtual Error texture_update(RID p_texture, uint32_t p_layer, const Vector<uint8_t> &p_data, uint32_t p_post_barrier = BARRIER_MASK_ALL); virtual Vector<uint8_t> texture_get_data(RID p_texture, uint32_t p_layer); |