From 79bdfc071853b002b94cf4352c236dc49d6f2c03 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 7 Jul 2016 02:08:28 +0900 Subject: [PATCH] opengl: Misspelling --- internal/graphics/opengl/context_js.go | 2 +- internal/graphics/opengl/context_mobile.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/graphics/opengl/context_js.go b/internal/graphics/opengl/context_js.go index 2a073cbaa..a034844a6 100644 --- a/internal/graphics/opengl/context_js.go +++ b/internal/graphics/opengl/context_js.go @@ -241,7 +241,7 @@ func (c *Context) DeleteFramebuffer(f Framebuffer) { if !gl.IsFramebuffer(f.Object) { return } - // If a framebuffer to be delted is bound, a newly bound framebuffer + // If a framebuffer to be deleted is bound, a newly bound framebuffer // will be a default framebuffer. // https://www.khronos.org/opengles/sdk/docs/man/xhtml/glDeleteFramebuffers.xml if c.lastFramebuffer == f { diff --git a/internal/graphics/opengl/context_mobile.go b/internal/graphics/opengl/context_mobile.go index 4c99fd4e3..515ccd2e2 100644 --- a/internal/graphics/opengl/context_mobile.go +++ b/internal/graphics/opengl/context_mobile.go @@ -219,7 +219,7 @@ func (c *Context) DeleteFramebuffer(f Framebuffer) { if !gl.IsFramebuffer(mgl.Framebuffer(f)) { return } - // If a framebuffer to be delted is bound, a newly bound framebuffer + // If a framebuffer to be deleted is bound, a newly bound framebuffer // will be a default framebuffer. // https://www.khronos.org/opengles/sdk/docs/man/xhtml/glDeleteFramebuffers.xml if c.lastFramebuffer == f {