glasm: Fix EmitVertex's optimization

This commit is contained in:
ReinUsesLisp 2021-05-21 20:55:04 -03:00 committed by ameerj
parent 1bccb43cbe
commit ddf601919f

View file

@ -73,7 +73,7 @@ void EmitEpilogue(EmitContext& ctx) {
}
void EmitEmitVertex(EmitContext& ctx, ScalarS32 stream) {
if (stream.type == Type::U32 && stream.imm_u32) {
if (stream.type == Type::U32 && stream.imm_u32 == 0) {
ctx.Add("EMIT;");
} else {
ctx.Add("EMITS {};", stream);