Shadergen: Pre-allocate space for shadergen string

This commit is contained in:
wheremyfoodat 2024-10-13 23:27:08 +03:00 committed by GitHub
parent 96f684e51c
commit 82068031f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,6 +34,8 @@ static constexpr const char* uniformDefinition = R"(
std::string FragmentGenerator::getDefaultVertexShader() {
std::string ret = "";
// Reserve some space (128KB) in the output string to avoid too many allocations later
ret.reserve(128 * 1024);
switch (api) {
case API::GL: ret += "#version 410 core"; break;