mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 22:27:48 +00:00
shader: Decode SUST and implement backing image functionality
This commit is contained in:
parent
f6828170f3
commit
224e4e174d
10 changed files with 284 additions and 3 deletions
|
@ -935,6 +935,11 @@ private:
|
|||
return {};
|
||||
}
|
||||
|
||||
Id ImageStore(Operation operation) {
|
||||
UNIMPLEMENTED();
|
||||
return {};
|
||||
}
|
||||
|
||||
Id Branch(Operation operation) {
|
||||
const auto target = std::get_if<ImmediateNode>(&*operation[0]);
|
||||
UNIMPLEMENTED_IF(!target);
|
||||
|
@ -1326,6 +1331,8 @@ private:
|
|||
&SPIRVDecompiler::TextureQueryLod,
|
||||
&SPIRVDecompiler::TexelFetch,
|
||||
|
||||
&SPIRVDecompiler::ImageStore,
|
||||
|
||||
&SPIRVDecompiler::Branch,
|
||||
&SPIRVDecompiler::PushFlowStack,
|
||||
&SPIRVDecompiler::PopFlowStack,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue