mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 14:50:05 +00:00
spirv_emit_context: Fix BaseInstance for OGL spirv
This commit is contained in:
parent
a5b2b8b91b
commit
d5d0d2cb0e
@ -1427,7 +1427,7 @@ void EmitContext::DefineInputs(const IR::Program& program) {
|
|||||||
if (profile.support_vertex_instance_id) {
|
if (profile.support_vertex_instance_id) {
|
||||||
instance_id = DefineInput(*this, U32[1], true, spv::BuiltIn::InstanceId);
|
instance_id = DefineInput(*this, U32[1], true, spv::BuiltIn::InstanceId);
|
||||||
if (loads[IR::Attribute::BaseInstance]) {
|
if (loads[IR::Attribute::BaseInstance]) {
|
||||||
base_instance = DefineInput(*this, U32[1], true, spv::BuiltIn::BaseVertex);
|
base_instance = DefineInput(*this, U32[1], true, spv::BuiltIn::BaseInstance);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
instance_index = DefineInput(*this, U32[1], true, spv::BuiltIn::InstanceIndex);
|
instance_index = DefineInput(*this, U32[1], true, spv::BuiltIn::InstanceIndex);
|
||||||
|
Loading…
Reference in New Issue
Block a user