summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/ir_emitter.h
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-03-28 21:25:08 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:25 +0200
commitbe3e94ae55184933e0f1f5fb55698513f7936382 (patch)
tree87dcf2bafc3da1966470de424f5f14bf662d1aa1 /src/shader_recompiler/frontend/ir/ir_emitter.h
parentshader,spirv: Implement ImageQueryLod. (diff)
downloadyuzu-be3e94ae55184933e0f1f5fb55698513f7936382.tar
yuzu-be3e94ae55184933e0f1f5fb55698513f7936382.tar.gz
yuzu-be3e94ae55184933e0f1f5fb55698513f7936382.tar.bz2
yuzu-be3e94ae55184933e0f1f5fb55698513f7936382.tar.lz
yuzu-be3e94ae55184933e0f1f5fb55698513f7936382.tar.xz
yuzu-be3e94ae55184933e0f1f5fb55698513f7936382.tar.zst
yuzu-be3e94ae55184933e0f1f5fb55698513f7936382.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/ir_emitter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.h b/src/shader_recompiler/frontend/ir/ir_emitter.h
index 9e752b208..2beeace8f 100644
--- a/src/shader_recompiler/frontend/ir/ir_emitter.h
+++ b/src/shader_recompiler/frontend/ir/ir_emitter.h
@@ -255,7 +255,8 @@ public:
TextureInstInfo info);
[[nodiscard]] Value ImageQueryDimension(const Value& handle, const IR::U32& lod);
- [[nodiscard]] Value ImageQueryLod(const Value& handle, const Value& coords);
+ [[nodiscard]] Value ImageQueryLod(const Value& handle, const Value& coords,
+ TextureInstInfo info);
[[nodiscard]] Value ImageGather(const Value& handle, const Value& coords, const Value& offset,
const Value& offset2, TextureInstInfo info);