diff --git a/pixelgl/canvas.go b/pixelgl/canvas.go index 05269f0ae68c694529d4131643b2236b48369b35..25da93989fcc9402d4fa3b763d3b8c6e7fb47b52 100644 --- a/pixelgl/canvas.go +++ b/pixelgl/canvas.go @@ -46,8 +46,8 @@ func NewCanvas(bounds pixel.Rect) *Canvas { // SetUniform will update the named uniform with the value of any supported underlying // attribute variable. If the uniform already exists, including defaults, they will be reassigned // to the new value. The value can be a pointer. -func (c *Canvas) SetUniform(Name string, Value interface{}) { - c.shader.setUniform(Name, Value) +func (c *Canvas) SetUniform(name string, value interface{}) { + c.shader.setUniform(name, value) } // SetFragmentShader allows you to set a new fragment shader on the underlying