correct constness

This commit is contained in:
wwylele 2017-07-26 00:39:43 +03:00
parent 28128348f2
commit bb63ae3052
2 changed files with 4 additions and 2 deletions

View file

@ -21,7 +21,8 @@ namespace Pica {
namespace Shader {
OutputVertex OutputVertex::FromAttributeBuffer(const RasterizerRegs& regs, AttributeBuffer& input) {
OutputVertex OutputVertex::FromAttributeBuffer(const RasterizerRegs& regs,
const AttributeBuffer& input) {
// Setup output data
union {
OutputVertex ret{};