summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_ir.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-12-13 20:59:28 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-01-15 21:54:50 +0100
commit2b90637f4bb0358525715c113f903d0c069b0eb4 (patch)
treed9af8e549affccb86a250aec2217c9504ee71a12 /src/video_core/shader/shader_ir.h
parentshader_decode: Implement TEXS (F32) (diff)
downloadyuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.tar
yuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.tar.gz
yuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.tar.bz2
yuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.tar.lz
yuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.tar.xz
yuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.tar.zst
yuzu-2b90637f4bb0358525715c113f903d0c069b0eb4.zip
Diffstat (limited to 'src/video_core/shader/shader_ir.h')
-rw-r--r--src/video_core/shader/shader_ir.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h
index 4716d4c90..23a4de2a7 100644
--- a/src/video_core/shader/shader_ir.h
+++ b/src/video_core/shader/shader_ir.h
@@ -681,6 +681,10 @@ private:
void WriteTexsInstructionFloat(BasicBlock& bb, Tegra::Shader::Instruction instr, Node texture);
+ Node GetTexCode(Tegra::Shader::Instruction instr, Tegra::Shader::TextureType texture_type,
+ Tegra::Shader::TextureProcessMode process_mode, bool depth_compare,
+ bool is_array);
+
Node GetTexsCode(Tegra::Shader::Instruction instr, Tegra::Shader::TextureType texture_type,
Tegra::Shader::TextureProcessMode process_mode, bool depth_compare,
bool is_array);