summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/file_environment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/file_environment.h')
-rw-r--r--src/shader_recompiler/file_environment.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shader_recompiler/file_environment.h b/src/shader_recompiler/file_environment.h
index c294bc6fa..b8c4bbadd 100644
--- a/src/shader_recompiler/file_environment.h
+++ b/src/shader_recompiler/file_environment.h
@@ -12,7 +12,9 @@ public:
explicit FileEnvironment(const char* path);
~FileEnvironment() override;
- u64 ReadInstruction(u32 offset) const override;
+ u64 ReadInstruction(u32 offset) override;
+
+ std::array<u32, 3> WorkgroupSize() override;
private:
std::vector<u64> data;