primitive_assembly: Make use of std::array where applicable

Same behavior, minus any potential implicit array to pointer decay.
This commit is contained in:
Lioncash
2020-04-18 20:39:07 -04:00
parent 397bd1bb73
commit e38e79e27e
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ namespace Pica {
template <typename VertexType>
PrimitiveAssembler<VertexType>::PrimitiveAssembler(PipelineRegs::TriangleTopology topology)
: topology(topology), buffer_index(0) {}
: topology(topology) {}
template <typename VertexType>
void PrimitiveAssembler<VertexType>::SubmitVertex(const VertexType& vtx,