Browse Source

gl_shader_decompiler: Remove unnecessary const from return values

This adds nothing from a behavioral point of view, and can inhibit the
move constructor/RVO
nce_cpp
Lioncash 8 years ago
parent
commit
5b433431aa
  1. 4
      src/video_core/renderer_opengl/gl_shader_decompiler.cpp

4
src/video_core/renderer_opengl/gl_shader_decompiler.cpp

@ -216,7 +216,7 @@ public:
} }
/// Returns a GLSL string representing the current state of the register /// Returns a GLSL string representing the current state of the register
const std::string GetActiveString() {
std::string GetActiveString() {
declr_type.insert(active_type); declr_type.insert(active_type);
return GetPrefixString(active_type) + std::to_string(index) + '_' + suffix; return GetPrefixString(active_type) + std::to_string(index) + '_' + suffix;
} }
@ -518,7 +518,7 @@ public:
private: private:
/// Build GLSL conversion function, e.g. floatBitsToInt, intBitsToFloat, etc. /// Build GLSL conversion function, e.g. floatBitsToInt, intBitsToFloat, etc.
const std::string GetGLSLConversionFunc(GLSLRegister::Type src, GLSLRegister::Type dest) const {
std::string GetGLSLConversionFunc(GLSLRegister::Type src, GLSLRegister::Type dest) const {
const std::string src_type = GLSLRegister::GetTypeString(src); const std::string src_type = GLSLRegister::GetTypeString(src);
std::string dest_type = GLSLRegister::GetTypeString(dest); std::string dest_type = GLSLRegister::GetTypeString(dest);
dest_type[0] = toupper(dest_type[0]); dest_type[0] = toupper(dest_type[0]);

Loading…
Cancel
Save