HomeSort by: relevance | last modified time | path
    Searched defs:configs (Results 1 - 25 of 38) sorted by relevancy

1 2

  /xsrc/external/mit/libepoxy/dist/test/
glx_common.c 109 GLXFBConfig ret = None, *configs; local
111 configs = glXGetFBConfigs(dpy, visinfo->screen, &nconfigs);
112 if (!configs)
118 if (glXGetFBConfigAttrib(dpy, configs[i], GLX_VISUAL_ID, &v))
122 ret = configs[i];
127 XFree(configs);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/
utils.c 161 * \param enable_accum Add an accum buffer to the configs
221 __DRIconfig **configs, **c; local
297 configs = calloc(num_modes + 1, sizeof *configs);
298 if (configs == NULL)
301 c = configs;
366 return configs;
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nouveau_screen.c 55 __DRIconfig **configs = NULL; local
85 configs = driConcatConfigs(configs, config);
88 return (const __DRIconfig **)configs;
94 const __DRIconfig **configs; local
148 configs = nouveau_get_configs(screen->device->chipset);
149 if (!configs)
152 return configs;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/common/
utils.c 161 * \param enable_accum Add an accum buffer to the configs
206 __DRIconfig **configs, **c; local
262 configs = calloc(num_modes + 1, sizeof *configs);
263 if (configs == NULL)
266 c = configs;
354 return configs;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nouveau_screen.c 54 __DRIconfig **configs = NULL; local
84 configs = driConcatConfigs(configs, config);
87 return (const __DRIconfig **)configs;
93 const __DRIconfig **configs; local
147 configs = nouveau_get_configs(screen->device->chipset);
148 if (!configs)
151 return configs;
  /xsrc/external/mit/libXrandr/dist/src/
Xrandr.c 323 XRRScreenConfiguration **configs = xrri->config; local
326 if (configs[i] != NULL) XFree (configs[i]);
XrrConfig.c 108 XRRScreenConfiguration **configs = xrri->config; local
110 if (configs[screen] == NULL)
111 configs[screen] = _XRRGetScreenInfo (dpy, info, RootWindow(dpy, screen));
112 return configs[screen];
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/
dmx_glxvisuals.c 47 __GLXvisualConfig *config, *configs; local
103 configs = config;
204 config = configs;
231 return configs;
500 __GLXvisualConfig *configs = NULL; local
507 configs = (__GLXvisualConfig*)
509 if (!configs) {
512 memset(configs, 0, nfbconfigs * sizeof(__GLXvisualConfig));
518 __GLXvisualConfig *cfg = configs + (*nconfigs);
540 * if the same visualid exists in the glx configs,
    [all...]
dmxinit.c 700 __GLXvisualConfig *configs = NULL; local
722 configs =
731 configs = dmxScreen->glxVisuals;
737 if (configs != NULL && configprivs != NULL) {
750 if (configs[i].vid > 0) {
754 configs[i].vid) {
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/dri/
dri_screen.c 149 __DRIconfig **configs = NULL; local
227 /* Add configs. */
270 /* Single-sample configs with an accumulation buffer. */
277 configs = driConcatConfigs(configs, new_configs);
279 /* Multi-sample configs without an accumulation buffer. */
287 configs = driConcatConfigs(configs, new_configs);
292 if (configs == NULL) {
297 return (const __DRIconfig **)configs;
    [all...]
drisw.c 503 const __DRIconfig **configs; local
532 configs = dri_init_screen_helper(screen, pscreen);
533 if (!configs)
553 return configs;
  /xsrc/external/mit/MesaLib/dist/src/glx/
driwindows_glx.c 419 driwindowsMapConfigs(struct glx_display *priv, int screen, struct glx_config *configs, struct glx_config *fbconfigs)
426 for (m = configs; m; m = m->next) {
468 struct glx_config *configs = NULL, *visuals = NULL; local
491 /* Augment configs with pxfi information */
492 configs = driwindowsMapConfigs(priv, screen, psc->base.configs, NULL);
493 visuals = driwindowsMapConfigs(priv, screen, psc->base.visuals, configs);
495 if (!configs || !visuals) {
500 glx_config_destroy_list(psc->base.configs);
501 psc->base.configs = configs
    [all...]
dri3_glx.c 834 struct glx_config *configs = NULL, *visuals = NULL; local
968 configs = driConvertConfigs(psc->core, psc->base.configs, driver_configs);
971 if (!configs || !visuals) {
976 glx_config_destroy_list(psc->base.configs);
977 psc->base.configs = configs;
1042 if (configs)
1043 glx_config_destroy_list(configs);
drisw_glx.c 819 struct glx_config *configs = NULL, *visuals = NULL; local
873 configs = driConvertConfigs(psc->core, psc->base.configs, driver_configs);
876 if (!configs || !visuals) {
881 glx_config_destroy_list(psc->base.configs);
882 psc->base.configs = configs;
904 if (configs)
905 glx_config_destroy_list(configs);
  /xsrc/external/mit/MesaLib/dist/src/intel/common/
intel_l3_config.c 33 const struct intel_l3_config *configs; member in struct:intel_l3_list
39 { .configs = hw##_l3_configs, .length = ARRAY_SIZE(hw##_l3_configs) }
290 const struct intel_l3_config *const cfg = &list->configs[0];
308 const struct intel_l3_config *const cfgs = list->configs;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/dri/
dri_screen.c 160 __DRIconfig **configs = NULL; local
241 /* Add configs. */
271 /* Single-sample configs with an accumulation buffer. */
278 configs = driConcatConfigs(configs, new_configs);
280 /* Multi-sample configs without an accumulation buffer. */
288 configs = driConcatConfigs(configs, new_configs);
293 if (configs == NULL) {
298 return (const __DRIconfig **)configs;
    [all...]
drisw.c 448 const __DRIconfig **configs; local
478 configs = dri_init_screen_helper(screen, pscreen);
479 if (!configs)
484 return configs;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_screen.c 807 __DRIconfig **configs = NULL; local
838 configs = driConcatConfigs(configs, new_configs);
841 if (configs == NULL) {
847 return (const __DRIconfig **)configs;
  /xsrc/external/mit/mesa-demos/dist/src/egl/opengl/
eglinfo.c 50 EGLConfig configs[MAX_CONFIGS]; local
53 eglGetConfigs(d, configs, MAX_CONFIGS, &numConfigs);
87 eglGetConfigAttrib(d, configs[i], EGL_CONFIG_ID, &id);
88 eglGetConfigAttrib(d, configs[i], EGL_BUFFER_SIZE, &size);
89 eglGetConfigAttrib(d, configs[i], EGL_LEVEL, &level);
91 eglGetConfigAttrib(d, configs[i], EGL_RED_SIZE, &red);
92 eglGetConfigAttrib(d, configs[i], EGL_GREEN_SIZE, &green);
93 eglGetConfigAttrib(d, configs[i], EGL_BLUE_SIZE, &blue);
94 eglGetConfigAttrib(d, configs[i], EGL_ALPHA_SIZE, &alpha);
95 eglGetConfigAttrib(d, configs[i], EGL_DEPTH_SIZE, &depth)
    [all...]
peglgears.c 371 EGLConfig configs[MAX_CONFIGS]; local
411 if (!eglChooseConfig(d, configAttribs, configs, MAX_CONFIGS, &numConfigs) ||
419 ctx = eglCreateContext(d, configs[0], EGL_NO_CONTEXT, NULL);
433 surface = eglCreatePbufferSurface(d, configs[0], screenAttribs);
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/
test_optimizer.cpp 868 std::vector<denorm_config> configs; variable
871 configs.push_back({flush, op, aco_opcode::num_opcodes, aco_opcode::num_opcodes});
875 configs.push_back({flush, op, aco_opcode::num_opcodes, dest});
880 configs.push_back({flush, op, src, aco_opcode::num_opcodes});
884 for (denorm_config cfg : configs) {
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_screen.c 811 __DRIconfig **configs = NULL; local
842 configs = driConcatConfigs(configs, new_configs);
845 if (configs == NULL) {
851 return (const __DRIconfig **)configs;
  /xsrc/external/mit/MesaLib.old/dist/src/glx/
driwindows_glx.c 459 driwindowsMapConfigs(struct glx_display *priv, int screen, struct glx_config *configs, struct glx_config *fbconfigs)
466 for (m = configs; m; m = m->next) {
508 struct glx_config *configs = NULL, *visuals = NULL; local
531 /* Augment configs with pxfi information */
532 configs = driwindowsMapConfigs(priv, screen, psc->base.configs, NULL);
533 visuals = driwindowsMapConfigs(priv, screen, psc->base.visuals, configs);
535 if (!configs || !visuals) {
540 glx_config_destroy_list(psc->base.configs);
541 psc->base.configs = configs
    [all...]
dri3_glx.c 836 struct glx_config *configs = NULL, *visuals = NULL; local
944 configs = driConvertConfigs(psc->core, psc->base.configs, driver_configs);
947 if (!configs || !visuals) {
952 glx_config_destroy_list(psc->base.configs);
953 psc->base.configs = configs;
1004 if (configs)
1005 glx_config_destroy_list(configs);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
intel_screen.c 904 * which constructs the advertised configs.)
1059 __DRIconfig **configs = NULL; local
1061 /* Generate singlesample configs without accumulation buffer. */
1088 configs = driConcatConfigs(configs, new_configs);
1091 /* Generate the minimum possible set of configs that include an
1110 configs = driConcatConfigs(configs, new_configs);
1113 if (configs == NULL) {
1119 return configs;
    [all...]

Completed in 81 milliseconds

1 2