From e6f9dcc5b93a5690ad4806eddc2082cea239f1d6 Mon Sep 17 00:00:00 2001 From: Christopher Denter Date: Sat, 28 May 2011 11:56:05 -0700 Subject: [PATCH] kivy.graphics.opengl: typo fix: c_opengl.CreateProgram() -> c_opengl.glCreateProgram() --- kivy/graphics/opengl.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/graphics/opengl.pyx b/kivy/graphics/opengl.pyx index 4bfbbc3ec..0a23eb756 100644 --- a/kivy/graphics/opengl.pyx +++ b/kivy/graphics/opengl.pyx @@ -528,7 +528,7 @@ def glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset def glCreateProgram(): cdef GLuint id - id = c_opengl.CreateProgram() + id = c_opengl.glCreateProgram() return id def glCreateShader(GLenum type):