Home | History | Annotate | Download | only in swapinterval

Lines Matching refs:config

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