From 6f57d4035a83cc565a7ac15c4b8f23d0b1eb9712 Mon Sep 17 00:00:00 2001 From: faiface <faiface@ksp.sk> Date: Thu, 15 Dec 2016 00:25:31 +0100 Subject: [PATCH] another defer optimization --- pixelgl/shader.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pixelgl/shader.go b/pixelgl/shader.go index 42bf413..ce638a3 100644 --- a/pixelgl/shader.go +++ b/pixelgl/shader.go @@ -181,7 +181,7 @@ func (s *Shader) SetUniformAttr(attr Attr, value interface{}) (ok bool) { } DoNoBlock(func() { - defer s.program.bind().restore() + s.program.bind() switch attr.Type { case Int: @@ -229,6 +229,8 @@ func (s *Shader) SetUniformAttr(attr Attr, value interface{}) (ok bool) { default: panic("set uniform attr: invalid attribute type") } + + s.program.restore() }) return true -- GitLab