diff options
author | Juan Linietsky <reduzio@gmail.com> | 2020-04-11 23:38:05 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 23:38:05 -0300 |
commit | 9dc19f7619633dc55bcebc4270d54fddc03bc97f (patch) | |
tree | f500648fe3d7a2e2b0cf1b2e0859f143e4430294 /drivers/vulkan/rendering_device_vulkan.h | |
parent | 636d4bad99db3293cb3b7ac13b7f7e3c69a83296 (diff) | |
parent | d81911490b447541b21305c16d27b078c184f9fe (diff) |
Merge pull request #37808 from reduz/port-effects-to-compute
Moved most of the effect code to compute.
Diffstat (limited to 'drivers/vulkan/rendering_device_vulkan.h')
-rw-r--r-- | drivers/vulkan/rendering_device_vulkan.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/vulkan/rendering_device_vulkan.h b/drivers/vulkan/rendering_device_vulkan.h index 88a12c7e44..ef36582e72 100644 --- a/drivers/vulkan/rendering_device_vulkan.h +++ b/drivers/vulkan/rendering_device_vulkan.h @@ -138,6 +138,8 @@ class RenderingDeviceVulkan : public RenderingDevice { uint32_t layers; uint32_t mipmaps; uint32_t usage_flags; + uint32_t base_mipmap; + uint32_t base_layer; Vector<DataFormat> allowed_shared_formats; |