rsx: If no array streams are enabled, mark inline array as disabled (null render)

This commit is contained in:
kd-11 2019-07-06 12:48:48 +03:00 committed by kd-11
parent 7840cd914e
commit 219a5382f7

View file

@ -1363,7 +1363,12 @@ namespace rsx
} }
} }
if (info.attribute_stride)
{
// At least one array feed must be enabled for vertex input
result.interleaved_blocks.emplace_back(std::move(info)); result.interleaved_blocks.emplace_back(std::move(info));
}
return; return;
} }