Commit 79370726 by Chris Forbes

Fix misleading UNIMPLEMENTED in image load

This function works with VkFormat, not spv::ImageFormat (due to input attachments) Change-Id: I36a36a94127533a009df8f806b55ff2845162a76 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/35528Tested-by: 's avatarChris Forbes <chrisforbes@google.com> Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent 428c0b21
...@@ -5634,7 +5634,7 @@ namespace sw ...@@ -5634,7 +5634,7 @@ namespace sw
dst.move(3, SIMD::Float(1)); dst.move(3, SIMD::Float(1));
break; break;
default: default:
UNIMPLEMENTED("spv::ImageFormat %d", int(vkFormat)); UNIMPLEMENTED("VkFormat %d", int(vkFormat));
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment