diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/ir_emitter.h')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/ir_emitter.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.h b/src/shader_recompiler/frontend/ir/ir_emitter.h index 04b43197f..446fd7785 100644 --- a/src/shader_recompiler/frontend/ir/ir_emitter.h +++ b/src/shader_recompiler/frontend/ir/ir_emitter.h | |||
| @@ -243,8 +243,12 @@ public: | |||
| 243 | [[nodiscard]] Value ImageGather(const Value& handle, const Value& coords, const Value& offset, | 243 | [[nodiscard]] Value ImageGather(const Value& handle, const Value& coords, const Value& offset, |
| 244 | const Value& offset2, TextureInstInfo info); | 244 | const Value& offset2, TextureInstInfo info); |
| 245 | 245 | ||
| 246 | [[nodiscard]] Value ImageGatherDref(const Value& handle, const Value& coords, const Value& offset, | 246 | [[nodiscard]] Value ImageGatherDref(const Value& handle, const Value& coords, |
| 247 | const Value& offset2, const F32& dref, TextureInstInfo info); | 247 | const Value& offset, const Value& offset2, const F32& dref, |
| 248 | TextureInstInfo info); | ||
| 249 | |||
| 250 | [[nodiscard]] Value ImageFetch(const Value& handle, const Value& coords, const Value& offset, | ||
| 251 | const U32& lod, const U32& multisampling, TextureInstInfo info); | ||
| 248 | 252 | ||
| 249 | [[nodiscard]] U1 VoteAll(const U1& value); | 253 | [[nodiscard]] U1 VoteAll(const U1& value); |
| 250 | [[nodiscard]] U1 VoteAny(const U1& value); | 254 | [[nodiscard]] U1 VoteAny(const U1& value); |