rename VertexArray.Count -> VertexNum

This commit is contained in:
faiface 2016-12-08 21:02:21 +01:00
parent c87527aa5d
commit 2f402dd9a8
1 changed files with 2 additions and 2 deletions

View File

@ -149,8 +149,8 @@ func (va *VertexArray) ID() uint32 {
return va.vao
}
// Count returns the number of vertices in a vertex array.
func (va *VertexArray) Count() int {
// VertexNum returns the number of vertices in a vertex array.
func (va *VertexArray) VertexNum() int {
return va.vertexNum
}