summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/control_flow.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-16 00:05:50 +0200
committerLioncash <mathew1800@gmail.com>2019-10-16 01:10:28 +0200
commit77b4916b3311f97a39e3111976dcffc33ff96a1c (patch)
tree48432e50531e55601bb82b48216f3d1dc6f1fb6b /src/video_core/shader/control_flow.h
parentmaxwell_3d: Silence truncation warnings (diff)
downloadyuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.tar
yuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.tar.gz
yuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.tar.bz2
yuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.tar.lz
yuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.tar.xz
yuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.tar.zst
yuzu-77b4916b3311f97a39e3111976dcffc33ff96a1c.zip
Diffstat (limited to 'src/video_core/shader/control_flow.h')
-rw-r--r--src/video_core/shader/control_flow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/control_flow.h b/src/video_core/shader/control_flow.h
index 74e54a5c7..37e987d62 100644
--- a/src/video_core/shader/control_flow.h
+++ b/src/video_core/shader/control_flow.h
@@ -76,8 +76,8 @@ struct ShaderCharacteristics {
CompilerSettings settings{};
};
-std::unique_ptr<ShaderCharacteristics> ScanFlow(const ProgramCode& program_code, u32 program_size,
- u32 start_address,
+std::unique_ptr<ShaderCharacteristics> ScanFlow(const ProgramCode& program_code,
+ std::size_t program_size, u32 start_address,
const CompilerSettings& settings);
} // namespace VideoCommon::Shader