Lines Matching defs:config

269             // We also know we can only get a single config back, and we know
277 // which config it will return (since there can be only one).
320 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
326 egl_connection_t* cnx = validate_display_config(dpy, config, dp);
330 *value = dp->configs[intptr_t(config)].configId;
334 dp->disp[ dp->configs[intptr_t(config)].impl ].dpy,
335 dp->configs[intptr_t(config)].config, attribute, value);
342 EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
349 egl_connection_t* cnx = validate_display_config(dpy, config, dp);
351 EGLDisplay iDpy = dp->disp[ dp->configs[intptr_t(config)].impl ].dpy;
352 EGLConfig iConfig = dp->configs[intptr_t(config)].config;
361 // set the native window's buffers format to match this config
383 egl_surface_t* s = new egl_surface_t(dpy, config, window, surface,
384 dp->configs[intptr_t(config)].impl, cnx);
395 EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
402 egl_connection_t* cnx = validate_display_config(dpy, config, dp);
405 dp->disp[ dp->configs[intptr_t(config)].impl ].dpy,
406 dp->configs[intptr_t(config)].config, pixmap, attrib_list);
408 egl_surface_t* s = new egl_surface_t(dpy, config, NULL, surface,
409 dp->configs[intptr_t(config)].impl, cnx);
416 EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
422 egl_connection_t* cnx = validate_display_config(dpy, config, dp);
425 dp->disp[ dp->configs[intptr_t(config)].impl ].dpy,
426 dp->configs[intptr_t(config)].config, attrib_list);
428 egl_surface_t* s = new egl_surface_t(dpy, config, NULL, surface,
429 dp->configs[intptr_t(config)].impl, cnx);
472 *value = dp->configs[intptr_t(s->config)].configId;
485 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config,
491 egl_connection_t* cnx = validate_display_config(dpy, config, dp);
498 dp->disp[ dp->configs[intptr_t(config)].impl ].dpy,
499 dp->configs[intptr_t(config)].config,
517 egl_context_t* c = new egl_context_t(dpy, context, config,
518 dp->configs[intptr_t(config)].impl, cnx, version);
695 *value = dp->configs[intptr_t(c->config)].configId;
1171 EGLConfig config, const EGLint *attrib_list)
1176 egl_connection_t* cnx = validate_display_config(dpy, config, dp);
1180 dp->disp[ dp->configs[intptr_t(config)].impl ].dpy,
1182 dp->configs[intptr_t(config)].config, attrib_list);