Lines Matching refs:config
143 struct glx_config *config, const __DRIconfig *driConfig)
165 if (glxValue != config->renderType)
177 if (config->bindToTextureTargets != GLX_DONT_CARE &&
178 glxValue != config->bindToTextureTargets)
190 if (!scalarEqual(config, attrib, glxValue))
205 if (glxValue != config->visualRating) {
206 if (config->visualRating == GLX_NONE) {
219 if (!scalarEqual(config, attrib, value)) {
225 config->numAuxBuffers = 0;
230 if (!scalarEqual(config, attrib, value)) {
236 config->bindToMipmapTexture = 0;
241 if (!scalarEqual(config, attrib, value))
251 struct glx_config *config, const __DRIconfig **driConfigs)
257 if (driConfigEqual(core, config, driConfigs[i]))
268 driConfig->base = *config;
285 /* no matching dri config for m */
346 struct glx_config *config = gc->config;
367 /* if this is a no-config context, infer the fbconfig from the drawable */
368 if (config == NULL)
369 config = driInferDrawableConfig(gc->psc, glxDrawable);
370 if (config == NULL)
409 type, config);
725 char *config;
742 free(e->config);
751 char *config = NULL;
762 config = ext->getXml(driverName);
764 config = strdup(ext->xml);
770 if (!config) {
772 config = dlsym(handle, "__driConfigOptions");
773 if (config)
774 config = strdup(config);
779 return config;
807 e->config = get_driver_config(driverName);
809 if (!e->config || !e->driverName) {
810 free(e->config);
826 return e ? e->config : NULL;