diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-09 18:45:24 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-09 18:45:26 -0400 |
commit | 175fe8aaebfd04e17e13bd2520598645b35c3167 (patch) | |
tree | c4a11ad1ce6ad2db8e3f7f6754fdd0b43bb673fe /src | |
parent | 6d28d288a31ad31324615c9f9bb1b0d151d37cd7 (diff) |
video_core/renderer_opengl/gl_shader_decompiler: Remove unused Composite() function
This isn't used at all, so it can be removed.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index ef1a1995f..1a62795e1 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -871,17 +871,6 @@ private: return {}; } - std::string Composite(Operation operation) { - std::string value = "vec4("; - for (std::size_t i = 0; i < 4; ++i) { - value += Visit(operation[i]); - if (i < 3) - value += ", "; - } - value += ')'; - return value; - } - template <Type type> std::string Add(Operation operation) { return GenerateBinaryInfix(operation, "+", type, type, type); |