Home | History | Annotate | Download | only in angeles

Lines Matching defs:error

100         fprintf(stderr,"%s(): egl error 0x%x (%s)\n", 
107 GLenum error = glGetError();
108 if (error != GL_NO_ERROR)
109 fprintf(stderr, "GL Error: 0x%04x\n", (int)error);
115 EGLint error = eglGetError();
117 if (error && error != EGL_SUCCESS)
118 fprintf(stderr, "EGL Error: 0x%04x\n", (int)error);