mirror of
https://github.com/yuzu-emu/sirit
synced 2024-11-22 21:53:56 +00:00
Fixup empty GLSL extension creation
This commit is contained in:
parent
7c15e838c6
commit
30dbb951dd
1 changed files with 1 additions and 0 deletions
|
@ -127,6 +127,7 @@ void Module::AddAnnotation(std::unique_ptr<Op> op) {
|
||||||
Id Module::GetGLSLstd450() {
|
Id Module::GetGLSLstd450() {
|
||||||
if (!glsl_std_450) {
|
if (!glsl_std_450) {
|
||||||
glsl_std_450 = std::make_unique<Op>(spv::Op::OpExtInstImport, bound++);
|
glsl_std_450 = std::make_unique<Op>(spv::Op::OpExtInstImport, bound++);
|
||||||
|
glsl_std_450->Add("GLSL.std.450");
|
||||||
}
|
}
|
||||||
return glsl_std_450.get();
|
return glsl_std_450.get();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue