Home | History | Annotate | Download | only in swapinterval

Lines Matching defs:config

41     EGLConfig config;
57 dpy, configAttribs, window, &config);
65 eglGetConfigAttrib(dpy, config, EGL_RED_SIZE, &r);
66 eglGetConfigAttrib(dpy, config, EGL_GREEN_SIZE, &g);
67 eglGetConfigAttrib(dpy, config, EGL_BLUE_SIZE, &b);
68 eglGetConfigAttrib(dpy, config, EGL_ALPHA_SIZE, &a);
69 eglGetConfigAttrib(dpy, config, EGL_NATIVE_VISUAL_ID, &vid);
71 surface = eglCreateWindowSurface(dpy, config, window, NULL);
74 fprintf(stderr, "error: %s, config=%p, format = %d-%d-%d-%d, visual-id = %d\n",
75 EGLUtils::strerror(err), config, r,g,b,a, vid);
79 printf("config=%p, format = %d-%d-%d-%d, visual-id = %d\n",
80 config, r,g,b,a, vid);
83 context = eglCreateContext(dpy, config, NULL, NULL);