mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-26 04:16:18 +00:00
shader_recompiler: Proper support for inst-typed buffer format operations. (#2469)
This commit is contained in:
parent
6860bb7349
commit
9424047214
6 changed files with 167 additions and 207 deletions
|
@ -638,7 +638,8 @@ Value IREmitter::CompositeConstruct(std::span<const Value> elements) {
|
|||
case 4:
|
||||
return CompositeConstruct(elements[0], elements[1], elements[2], elements[3]);
|
||||
default:
|
||||
UNREACHABLE_MSG("Composite construct with greater than 4 elements");
|
||||
UNREACHABLE_MSG("Composite construct with {} elements, only 2-4 are supported",
|
||||
elements.size());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue