mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-15 21:32:51 +00:00
glasm: Optimize EmitVertex into EMIT
This commit is contained in:
parent
79929be833
commit
679e7146a7
|
@ -73,8 +73,12 @@ void EmitEpilogue(EmitContext& ctx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void EmitEmitVertex(EmitContext& ctx, ScalarS32 stream) {
|
void EmitEmitVertex(EmitContext& ctx, ScalarS32 stream) {
|
||||||
|
if (stream.type == Type::U32 && stream.imm_u32) {
|
||||||
|
ctx.Add("EMIT;");
|
||||||
|
} else {
|
||||||
ctx.Add("EMITS {};", stream);
|
ctx.Add("EMITS {};", stream);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void EmitEndPrimitive(EmitContext& ctx, const IR::Value& stream) {
|
void EmitEndPrimitive(EmitContext& ctx, const IR::Value& stream) {
|
||||||
if (!stream.IsImmediate()) {
|
if (!stream.IsImmediate()) {
|
||||||
|
|
Loading…
Reference in a new issue