VideoCore: Eliminate an unnecessary copy in the drawcall loop

This commit is contained in:
Yuri Kunde Schlesner 2016-12-14 21:00:02 -08:00
parent bde54333df
commit f00ada3363
3 changed files with 3 additions and 5 deletions

View file

@ -85,7 +85,7 @@ struct OutputRegisters {
alignas(16) Math::Vec4<float24> value[16];
OutputVertex ToVertex(const Regs::ShaderConfig& config);
OutputVertex ToVertex(const Regs::ShaderConfig& config) const;
};
static_assert(std::is_pod<OutputRegisters>::value, "Structure is not POD");