diff --git a/pixelgl/vertex.go b/pixelgl/vertex.go
index 9ad615661ca04391eea81f401966f85d101325d2..1f93a490229647b3da9eb593543bdaac2292d194 100644
--- a/pixelgl/vertex.go
+++ b/pixelgl/vertex.go
@@ -183,6 +183,8 @@ func (va *VertexArray) Draw() {
 // UpdateData overwrites the current vertex array data starting at the index offset.
 //
 // Offset is not a number of bytes, instead, it's an index in the array.
+//
+// If offset is negative or offset+len(data)>len(originaldata) the program panics.
 func (va *VertexArray) UpdateData(offset int, data []float64) {
 	DoNoBlock(func() {
 		gl.BindBuffer(gl.ARRAY_BUFFER, va.vbo)