Merge pull request #1001 from lioncash/reserve

gl_shader_decompiler: Reserve element memory beforehand in BuildRegisterList()
pull/8/head
bunnei 7 years ago committed by GitHub
commit 05c33d89a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -507,6 +507,8 @@ private:
/// Build the GLSL register list.
void BuildRegisterList() {
regs.reserve(Register::NumRegisters);
for (size_t index = 0; index < Register::NumRegisters; ++index) {
regs.emplace_back(index, suffix);
}

Loading…
Cancel
Save