summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-23 23:09:29 +0200
committerLioncash <mathew1800@gmail.com>2018-07-23 23:11:18 +0200
commit3b88ce3dcb32e293650c719eb3f3b628e19c9479 (patch)
tree50fca26ea5faeaaec73b84dad7e44492a6a6a85f /src/video_core
parentMerge pull request #775 from lioncash/str (diff)
downloadyuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.tar
yuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.tar.gz
yuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.tar.bz2
yuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.tar.lz
yuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.tar.xz
yuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.tar.zst
yuzu-3b88ce3dcb32e293650c719eb3f3b628e19c9479.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_decompiler.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
index ba827181b..e771411ef 100644
--- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
@@ -6,6 +6,9 @@
#include <set>
#include <string>
#include <string_view>
+
+#include <fmt/format.h>
+
#include "common/assert.h"
#include "common/common_types.h"
#include "video_core/engines/shader_bytecode.h"
@@ -1774,11 +1777,8 @@ private:
}; // namespace Decompiler
std::string GetCommonDeclarations() {
- std::string declarations;
- declarations += "#define MAX_CONSTBUFFER_ELEMENTS " +
- std::to_string(RasterizerOpenGL::MaxConstbufferSize / (sizeof(GLvec4)));
- declarations += '\n';
- return declarations;
+ return fmt::format("#define MAX_CONSTBUFFER_ELEMENTS {}\n",
+ RasterizerOpenGL::MaxConstbufferSize / sizeof(GLvec4));
}
boost::optional<ProgramResult> DecompileProgram(const ProgramCode& program_code, u32 main_offset,