diff --git a/pixelgl/thread.go b/pixelgl/thread.go
index 0dda9b9d3314fadaec61b6a483cc6565dffba641..a8a4e7b46daa1f34e0cbf74725acd167ae25a6c2 100644
--- a/pixelgl/thread.go
+++ b/pixelgl/thread.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"runtime"
 
-	"github.com/go-gl/gl/v2.1/gl"
+	"github.com/go-gl/gl/v3.3-core/gl"
 )
 
 // Due to the existance and usage of thread-local variables by OpenGL, it's recommended to
@@ -23,6 +23,17 @@ func init() {
 	}()
 }
 
+// Init initializes OpenGL by loading the function pointers from the active OpenGL context.
+//
+// It must be called under the presence of an active OpenGL context, e.g., always after calling window.MakeContextCurrent().
+// Also, always call this function when switching contexts.
+func Init() {
+	err := gl.Init()
+	if err != nil {
+		panic(err)
+	}
+}
+
 // Do executes a function inside a dedicated OpenGL thread.
 // Do blocks until the function finishes.
 //