mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 01:09:58 +00:00
video_core/renderer_opengl/gl_shader_decompiler: Remove unused Composite() function
This isn't used at all, so it can be removed.
This commit is contained in:
parent
6d28d288a3
commit
175fe8aaeb
1 changed files with 0 additions and 11 deletions
|
@ -871,17 +871,6 @@ private:
|
||||||
return {};
|
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>
|
template <Type type>
|
||||||
std::string Add(Operation operation) {
|
std::string Add(Operation operation) {
|
||||||
return GenerateBinaryInfix(operation, "+", type, type, type);
|
return GenerateBinaryInfix(operation, "+", type, type, type);
|
||||||
|
|
Loading…
Reference in a new issue