diff options
author | Samuel Pitoiset <[email protected]> | 2019-01-17 18:11:07 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-01-18 13:26:24 +0100 |
commit | 83cc87ead463a494d145c00cbe4d525d6a908bbf (patch) | |
tree | 63141fe92c441560f57c29232282d0d8ea357187 /src/amd/vulkan/radv_meta_resolve.c | |
parent | 80dae7022eea660eb85f9f0cd094cfa5c7102e9d (diff) |
radv: drop unused code related to 16 sample locations
The driver only supports up to 8 sample locations.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta_resolve.c')
-rw-r--r-- | src/amd/vulkan/radv_meta_resolve.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/amd/vulkan/radv_meta_resolve.c b/src/amd/vulkan/radv_meta_resolve.c index 7ce36b1df6e..6a7cbfe8468 100644 --- a/src/amd/vulkan/radv_meta_resolve.c +++ b/src/amd/vulkan/radv_meta_resolve.c @@ -456,14 +456,6 @@ void radv_CmdResolveImage( } assert(dest_image->info.samples == 1); - if (src_image->info.samples >= 16) { - /* See commit aa3f9aaf31e9056a255f9e0472ebdfdaa60abe54 for the - * glBlitFramebuffer workaround for samples >= 16. - */ - radv_finishme("vkCmdResolveImage: need interpolation workaround when " - "samples >= 16"); - } - if (src_image->info.array_size > 1) radv_finishme("vkCmdResolveImage: multisample array images"); |