reorder Shader struct

This commit is contained in:
faiface 2016-12-02 22:58:20 +01:00
parent fc7fda188f
commit 63efe9e167
1 changed files with 1 additions and 1 deletions

View File

@ -18,9 +18,9 @@ type UniformFormat map[string]Attr
// Shader is an OpenGL shader program.
type Shader struct {
parent Doer
program uint32
vertexFormat VertexFormat
uniformFormat UniformFormat
program uint32
uniforms map[Attr]int32
}