mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-20 05:12:41 +00: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