mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 15:17:55 +00:00
Shader_IR: Implement TXD instruction.
This commit is contained in:
parent
6267529837
commit
206d13c987
5 changed files with 120 additions and 8 deletions
|
@ -982,6 +982,11 @@ private:
|
|||
return {};
|
||||
}
|
||||
|
||||
Id TextureGradient(Operation operation) {
|
||||
UNIMPLEMENTED();
|
||||
return {};
|
||||
}
|
||||
|
||||
Id ImageLoad(Operation operation) {
|
||||
UNIMPLEMENTED();
|
||||
return {};
|
||||
|
@ -1474,6 +1479,7 @@ private:
|
|||
&SPIRVDecompiler::TextureQueryDimensions,
|
||||
&SPIRVDecompiler::TextureQueryLod,
|
||||
&SPIRVDecompiler::TexelFetch,
|
||||
&SPIRVDecompiler::TextureGradient,
|
||||
|
||||
&SPIRVDecompiler::ImageLoad,
|
||||
&SPIRVDecompiler::ImageStore,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue