Video_core: Address feedback

This commit is contained in:
Fernando Sahmkow 2023-01-03 10:01:25 -05:00
parent 62fc8bfe16
commit 1fdf24a081
20 changed files with 348 additions and 172 deletions
src/shader_recompiler/frontend/ir

View file

@ -450,6 +450,8 @@ std::string NameOf(Attribute attribute) {
return "BaseInstance";
case Attribute::BaseVertex:
return "BaseVertex";
case Attribute::DrawID:
return "DrawID";
}
return fmt::format("<reserved attribute {}>", static_cast<int>(attribute));
}