From: Jean Privat Date: Fri, 16 Oct 2015 17:49:21 +0000 (-0400) Subject: lib/egl: move `report_egl_error` from Object to `EGLDisplay` X-Git-Tag: v0.7.9~28^2~2 X-Git-Url: http://nitlanguage.org lib/egl: move `report_egl_error` from Object to `EGLDisplay` Signed-off-by: Jean Privat --- diff --git a/lib/egl.nit b/lib/egl.nit index 69df8e5..d188c29 100644 --- a/lib/egl.nit +++ b/lib/egl.nit @@ -103,6 +103,12 @@ extern class EGLDisplay `{ EGLDisplay `} } `} + private fun report_egl_error(cmsg: NativeString) + do + var msg = cmsg.to_s + print "libEGL error: {msg}" + end + # Can be used directly, but it is preferable to use a `EGLConfigAttribs` fun config_attrib(config: EGLConfig, attribute: Int): Int `{ EGLint val; @@ -443,14 +449,6 @@ class EGLConfigChooser end end -redef class Object - private fun report_egl_error(cmsg: NativeString) - do - var msg = cmsg.to_s - print "libEGL error: {msg}" - end -end - fun egl_bind_opengl_api: Bool `{ return eglBindAPI(EGL_OPENGL_API); `} fun egl_bind_opengl_es_api: Bool `{ return eglBindAPI(EGL_OPENGL_ES_API); `} fun egl_bind_openvg_api: Bool `{ return eglBindAPI(EGL_OPENVG_API); `}