From 3200ae58a44cf504577c4d052c0f086f027221f1 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 14 Jan 2015 23:38:25 +0900 Subject: [PATCH] Fix a comment --- internal/opengl/context_js.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/opengl/context_js.go b/internal/opengl/context_js.go index 6e22b4198..6b18e7450 100644 --- a/internal/opengl/context_js.go +++ b/internal/opengl/context_js.go @@ -112,7 +112,7 @@ func (c *Context) DeleteTexture(t Texture) { func (c *Context) GlslHighpSupported() bool { gl := c.gl - // node-gl library may not define getShaderPrecisionFormat. + // headless-gl library may not define getShaderPrecisionFormat. if gl.Get("getShaderPrecisionFormat") == js.Undefined { return false }