diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-16 11:32:35 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-18 21:03:29 -0400 |
commit | 3df9558593d41b8c9bda905dd745a67ff00db033 (patch) | |
tree | f2393a96e23b4ce25a6ecd6011dd2f87f34e6f00 /src | |
parent | 1109db86b7259857762fc29b2ff8c9f95e92353e (diff) |
video_core/control_flow: Place all internally linked types/functions within an anonymous namespace
Previously, quite a few functions were being linked with external
linkage.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/shader/control_flow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/control_flow.cpp b/src/video_core/shader/control_flow.cpp index fdcc970ff..440729258 100644 --- a/src/video_core/shader/control_flow.cpp +++ b/src/video_core/shader/control_flow.cpp @@ -15,7 +15,7 @@ #include "video_core/shader/shader_ir.h" namespace VideoCommon::Shader { - +namespace { using Tegra::Shader::Instruction; using Tegra::Shader::OpCode; @@ -411,6 +411,7 @@ bool TryQuery(CFGRebuildState& state) { state.queries.push_back(conditional_query); return true; } +} // Anonymous namespace std::optional<ShaderCharacteristics> ScanFlow(const ProgramCode& program_code, u32 program_size, u32 start_address) { |