diff options
author | Bas Nieuwenhuizen <[email protected]> | 2017-06-29 00:38:29 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-07-05 20:23:00 +0200 |
commit | 7c7196e35ca7ad924ed2079d921f0334d0b4cc1a (patch) | |
tree | e11890cc9409066a3123e5071275caa8b4ac0bc5 /src/amd/vulkan/radv_meta_decompress.c | |
parent | 0ede0f9dff519fe4444da91031c687207b0d9c5f (diff) |
radv: Disable depth & stencil tests when the depthbuffer doesn't support it.
Signed-off-by: Bas Nieuwenhuizen <[email protected]>
Acked-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta_decompress.c')
-rw-r--r-- | src/amd/vulkan/radv_meta_decompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_meta_decompress.c b/src/amd/vulkan/radv_meta_decompress.c index 5a348636907..7afe08fbdb2 100644 --- a/src/amd/vulkan/radv_meta_decompress.c +++ b/src/amd/vulkan/radv_meta_decompress.c @@ -36,7 +36,7 @@ create_pass(struct radv_device *device) const VkAllocationCallbacks *alloc = &device->meta_state.alloc; VkAttachmentDescription attachment; - attachment.format = VK_FORMAT_UNDEFINED; + attachment.format = VK_FORMAT_D32_SFLOAT_S8_UINT; attachment.samples = 1; attachment.loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; attachment.storeOp = VK_ATTACHMENT_STORE_OP_STORE; |