reorder Shader struct
This commit is contained in:
parent
fc7fda188f
commit
63efe9e167
|
@ -18,9 +18,9 @@ type UniformFormat map[string]Attr
|
||||||
// Shader is an OpenGL shader program.
|
// Shader is an OpenGL shader program.
|
||||||
type Shader struct {
|
type Shader struct {
|
||||||
parent Doer
|
parent Doer
|
||||||
|
program uint32
|
||||||
vertexFormat VertexFormat
|
vertexFormat VertexFormat
|
||||||
uniformFormat UniformFormat
|
uniformFormat UniformFormat
|
||||||
program uint32
|
|
||||||
uniforms map[Attr]int32
|
uniforms map[Attr]int32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue