summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-16 11:32:35 -0400
committerLioncash <mathew1800@gmail.com>2019-07-18 21:03:29 -0400
commit3df9558593d41b8c9bda905dd745a67ff00db033 (patch)
treef2393a96e23b4ce25a6ecd6011dd2f87f34e6f00 /src
parent1109db86b7259857762fc29b2ff8c9f95e92353e (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.cpp3
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) {