mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 22:45:45 +00:00
glasm: Fix EmitVertex's optimization
This commit is contained in:
parent
712afb51d4
commit
b0b43d2a66
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ void EmitEpilogue(EmitContext& ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void EmitEmitVertex(EmitContext& ctx, ScalarS32 stream) {
|
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;");
|
ctx.Add("EMIT;");
|
||||||
} else {
|
} else {
|
||||||
ctx.Add("EMITS {};", stream);
|
ctx.Add("EMITS {};", stream);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue