From 9bd17de2d3785db78a874efe803be6f044b541c5 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 4 Aug 2024 04:26:53 +0900 Subject: [PATCH] internal/graphicsdriver/opengl: remove unused members --- internal/graphicsdriver/opengl/context.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/graphicsdriver/opengl/context.go b/internal/graphicsdriver/opengl/context.go index ff776ec85..858bc2eb6 100644 --- a/internal/graphicsdriver/opengl/context.go +++ b/internal/graphicsdriver/opengl/context.go @@ -90,7 +90,6 @@ type ( type ( uniformLocation int32 - attribLocation int32 ) const ( @@ -111,8 +110,6 @@ type context struct { lastBlend graphicsdriver.Blend maxTextureSize int maxTextureSizeOnce sync.Once - highp bool - highpOnce sync.Once initOnce sync.Once }