Minor nit, set emitted when emitting spec constant op in HLSL.

This commit is contained in:
Hans-Kristian Arntzen 2018-11-01 11:49:32 +01:00
parent 6e99fcf695
commit 00d542ed44

View File

@ -1054,6 +1054,7 @@ void CompilerHLSL::emit_specialization_constants()
auto &type = get<SPIRType>(c.basetype);
auto name = to_name(c.self);
statement("static const ", variable_decl(type, name), " = ", constant_op_expression(c), ";");
emitted = true;
}
}