diff options
author | Liam <byteslice@airmail.cc> | 2023-12-19 10:55:56 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-12-21 14:34:46 -0500 |
commit | 9e9aed41bebc1b7d29dbfcddcc203693bcdc680e (patch) | |
tree | 5f2cae1f65daf7cdd0b1978e48764747177d949d /src/shader_recompiler/environment.h | |
parent | 3d268b84809813114c7e54420c53ff6e9a981996 (diff) |
shader_recompiler: use float image operations on load/store when required
Diffstat (limited to 'src/shader_recompiler/environment.h')
-rw-r--r-- | src/shader_recompiler/environment.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/environment.h b/src/shader_recompiler/environment.h index 15285ab0ac..e30bf094aa 100644 --- a/src/shader_recompiler/environment.h +++ b/src/shader_recompiler/environment.h @@ -24,6 +24,8 @@ public: [[nodiscard]] virtual TexturePixelFormat ReadTexturePixelFormat(u32 raw_handle) = 0; + [[nodiscard]] virtual bool IsTexturePixelFormatInteger(u32 raw_handle) = 0; + [[nodiscard]] virtual u32 ReadViewportTransformState() = 0; [[nodiscard]] virtual u32 TextureBoundBuffer() const = 0; |