Home | History | Annotate | Download | only in gl2_copyTexImage

Lines Matching refs:returnVal

47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
48 if (returnVal != EGL_TRUE) {
49 fprintf(stderr, "%s() returned %d\n", op, returnVal);
323 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
325 if (returnVal && error == EGL_SUCCESS) {
335 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
336 checkEglError("eglGetConfigs", returnVal);
337 if (!returnVal) {
349 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
350 checkEglError("eglGetConfigs", returnVal);
351 if (!returnVal) {