mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 02:57:58 -05:00
glsl: Pass IR::Inst& to Emit functions
This commit is contained in:
@ -22,7 +22,7 @@ static void Alias(IR::Inst& inst, const IR::Value& value) {
|
||||
}
|
||||
} // namespace
|
||||
|
||||
void EmitIdentity(EmitContext&, IR::Inst* inst, const IR::Value& value) {
|
||||
Alias(*inst, value);
|
||||
void EmitIdentity(EmitContext&, IR::Inst& inst, const IR::Value& value) {
|
||||
Alias(inst, value);
|
||||
}
|
||||
} // namespace Shader::Backend::GLSL
|
||||
|
Reference in New Issue
Block a user