mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 08:49:02 -05:00
glsl: Implement IADD CC
This commit is contained in:
@ -183,6 +183,8 @@ std::string EmitGLSL(const Profile& profile, const RuntimeInfo& runtime_info, IR
|
||||
for (size_t index = 0; index < ctx.reg_alloc.num_used_registers; ++index) {
|
||||
ctx.header += fmt::format("{} R{};", ctx.reg_alloc.reg_types[index], index);
|
||||
}
|
||||
// TODO: track CC usage
|
||||
ctx.header += "uint carry;";
|
||||
ctx.code.insert(0, ctx.header);
|
||||
ctx.code += "}";
|
||||
fmt::print("\n{}\n", ctx.code);
|
||||
|
Reference in New Issue
Block a user