summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_jit_x64.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-12-18 01:16:02 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-26 03:53:25 +0100
commit0e9081b97348c65029c96697443acb0dbbc58756 (patch)
tree58091caadcd6a11a96b48713c41ebf54716e1cc3 /src/video_core/shader/shader_jit_x64.h
parentVideoCore/Shader: Move per-batch ShaderEngine state into ShaderSetup (diff)
downloadyuzu-0e9081b97348c65029c96697443acb0dbbc58756.tar
yuzu-0e9081b97348c65029c96697443acb0dbbc58756.tar.gz
yuzu-0e9081b97348c65029c96697443acb0dbbc58756.tar.bz2
yuzu-0e9081b97348c65029c96697443acb0dbbc58756.tar.lz
yuzu-0e9081b97348c65029c96697443acb0dbbc58756.tar.xz
yuzu-0e9081b97348c65029c96697443acb0dbbc58756.tar.zst
yuzu-0e9081b97348c65029c96697443acb0dbbc58756.zip
Diffstat (limited to 'src/video_core/shader/shader_jit_x64.h')
-rw-r--r--src/video_core/shader/shader_jit_x64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_jit_x64.h b/src/video_core/shader/shader_jit_x64.h
index bd30f51e2..078b2cba5 100644
--- a/src/video_core/shader/shader_jit_x64.h
+++ b/src/video_core/shader/shader_jit_x64.h
@@ -19,8 +19,8 @@ public:
JitX64Engine();
~JitX64Engine() override;
- void SetupBatch(ShaderSetup& setup) override;
- void Run(const ShaderSetup& setup, UnitState& state, unsigned int entry_point) const override;
+ void SetupBatch(ShaderSetup& setup, unsigned int entry_point) override;
+ void Run(const ShaderSetup& setup, UnitState& state) const override;
private:
std::unordered_map<u64, std::unique_ptr<JitShader>> cache;