This commit is contained in:
faiface 2016-11-23 16:38:06 +01:00
parent e0d0207373
commit 5f67cf85f7
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ type VertexArray struct {
count int
}
// NewVertexArray creates a new vertex array and wrap another BeginEnder around it.
// NewVertexArray creates a new vertex array and wraps another BeginEnder around it.
func NewVertexArray(parent BeginEnder, format VertexFormat, mode VertexDrawMode, usage VertexUsage, data []float64) *VertexArray {
va := &VertexArray{
parent: parent,