Searched defs:configs (Results 1 - 25 of 69) sorted by relevance

123

/external/mesa3d/src/gallium/state_trackers/egl/x11/
H A Dglxinit.h8 __GLcontextModes *configs; member in struct:__anon12439
H A Dnative_ximage.c51 struct ximage_config *configs; member in struct:ximage_display
336 if (xdpy->configs[i].base.color_format == fmt) {
337 nconf = &xdpy->configs[i].base;
378 const struct native_config **configs; local
382 if (!xdpy->configs) {
391 * Create two configs for each visual.
394 xdpy->configs = CALLOC(num_visuals * 2, sizeof(*xdpy->configs));
395 if (!xdpy->configs)
400 struct ximage_config *xconf = &xdpy->configs[coun
[all...]
/external/deqp/modules/egl/
H A DteglConfigList.cpp43 : TestCase(eglTestCtx, "configs", "Output the list of configs from EGL")
65 vector<EGLConfig> configs = eglu::getConfigs(egl, display); local
71 log.startEglConfigSet("EGL-configs", "List of all EGL configs");
76 for (int i = 0; i < (int)configs.size(); i++)
81 egl.getConfigAttrib(display, configs[i], EGL_BUFFER_SIZE, &val);
84 egl.getConfigAttrib(display, configs[i], EGL_RED_SIZE, &val);
87 egl.getConfigAttrib(display, configs[i], EGL_GREEN_SIZE, &val);
90 egl.getConfigAttrib(display, configs[
[all...]
H A DteglChooseConfigReference.cpp147 // \todo [mika 2015-05-05] Sort YUV configs correctly. Currently all YUV configs are non-conformant and ordering can be relaxed.
226 TCU_FAIL("Unable to compare configs - duplicate ID?");
420 std::vector<SurfaceConfig> filter (const std::vector<SurfaceConfig>& configs) argument
424 for (std::vector<SurfaceConfig>::const_iterator iter = configs.begin(); iter != configs.end(); iter++)
435 // Get all configs
444 // Pair configs with info
445 std::vector<SurfaceConfig> configs; local
447 configs
[all...]
H A DteglImageTests.cpp220 vector<EGLConfig> configs; local
221 // Prefer configs in order: pbuffer, window, pixmap
229 configs = eglu::chooseConfigs(egl, display, attribs);
231 if (!configs.empty())
232 return configs.front();
235 TCU_THROW(NotSupportedError, "No compatible EGL configs found");
/external/mesa3d/src/glx/
H A Dglxconfig.c267 glx_config_destroy_list(struct glx_config *configs) argument
269 while (configs != NULL) {
270 struct glx_config *const next = configs->next;
272 free(configs);
273 configs = next;
288 glx_config_find_visual(struct glx_config *configs, int vid) argument
292 for (c = configs; c != NULL; c = c->next)
300 glx_config_find_fbconfig(struct glx_config *configs, int fbid) argument
304 for (c = configs; c != NULL; c = c->next)
/external/deqp/framework/egl/
H A DegluGLUtil.cpp226 const std::vector<EGLConfig> configs = eglu::getConfigs(egl, display); local
228 for (vector<EGLConfig>::const_iterator iter = configs.begin(); iter != configs.end(); ++iter)
H A DegluUtil.cpp100 vector<EGLConfig> configs; local
106 configs.resize(configCount);
107 EGLU_CHECK_CALL(egl, getConfigs(display, &(configs[0]), (EGLint)configs.size(), &configCount));
110 return configs;
120 vector<EGLConfig> configs(numConfigs);
123 EGLU_CHECK_CALL(egl, chooseConfig(display, attribList, &configs.front(), numConfigs, &numConfigs));
125 return configs;
158 const vector<EGLConfig> configs (chooseConfigs(egl, display, attribList));
159 if (configs
409 const vector<EGLConfig> configs = getConfigs(egl, display); local
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/null/
H A Dnative_null.c45 struct native_config *configs; member in struct:null_display
59 const struct native_config **configs; local
62 configs = MALLOC(sizeof(*configs) * null->num_configs);
63 if (configs) {
65 configs[i] = &null->configs[i];
70 return configs;
85 FREE(null->configs);
102 null->configs
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/wayland/
H A Dnative_wayland.h54 struct wayland_config *configs; member in struct:wayland_display
H A Dnative_wayland.c83 const struct native_config **configs; local
86 if (!display->configs) {
90 display->configs = CALLOC(Elements(wayland_formats),
91 sizeof(*display->configs));
92 if (!display->configs)
99 nconf = &display->configs[display->num_configs].base;
111 configs = MALLOC(display->num_configs * sizeof(*configs));
112 if (configs) {
114 configs[
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_screen.c48 __DRIconfig **configs = NULL; local
82 configs = driConcatConfigs(configs, config);
85 return (const __DRIconfig **)configs;
91 const __DRIconfig **configs; local
126 configs = nouveau_get_configs();
127 if (!configs)
130 return configs;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFAState.java384 public void setNFAConfigurations(OrderedHashSet<NFAConfiguration> configs) { argument
385 this.nfaConfigurations = configs;
420 * configurations, but don't ignore resolveWithPredicate configs
435 // configurations; i.e., don't ignore resolveWithPredicate configs
516 * Use a hash table to record the lists of configs for each state
565 " configs: "+configsForState);
601 // For example, the list of configs for NFA state 3 in some DFA
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSquaringDrawable.java41 public void setChangingConfigurations(int configs) { argument
42 wrapped.setChangingConfigurations(configs);
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
H A DAndroidConfigChooser.java213 //throw new IllegalArgumentException("No configs match configSpec");
218 EGLConfig[] configs = new EGLConfig[numConfigs];
219 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs,
223 EGLConfig config = chooseConfig(egl, display, configs);
231 EGLConfig[] configs);
292 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) { argument
293 for (EGLConfig config : configs) {
230 chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
/external/mesa3d/src/gallium/state_trackers/dri/common/
H A Ddri_screen.c80 __DRIconfig **configs = NULL; local
230 configs = configs_r5g6b5;
231 configs = driConcatConfigs(configs, configs_a8r8g8b8);
232 configs = driConcatConfigs(configs, configs_x8r8g8b8);
234 configs = configs_a8r8g8b8;
235 configs = driConcatConfigs(configs, configs_x8r8g8b8);
236 configs
[all...]
/external/mesa3d/src/gallium/state_trackers/dri/drm/
H A Ddri_screen.c80 __DRIconfig **configs = NULL; local
230 configs = configs_r5g6b5;
231 configs = driConcatConfigs(configs, configs_a8r8g8b8);
232 configs = driConcatConfigs(configs, configs_x8r8g8b8);
234 configs = configs_a8r8g8b8;
235 configs = driConcatConfigs(configs, configs_x8r8g8b8);
236 configs
[all...]
/external/mesa3d/src/gallium/state_trackers/dri/sw/
H A Ddri_screen.c80 __DRIconfig **configs = NULL; local
230 configs = configs_r5g6b5;
231 configs = driConcatConfigs(configs, configs_a8r8g8b8);
232 configs = driConcatConfigs(configs, configs_x8r8g8b8);
234 configs = configs_a8r8g8b8;
235 configs = driConcatConfigs(configs, configs_x8r8g8b8);
236 configs
[all...]
H A Ddrisw.c297 const __DRIconfig **configs; local
316 configs = dri_init_screen_helper(screen, pscreen, 32);
317 if (!configs)
320 return configs;
/external/mesa3d/src/gallium/state_trackers/egl/drm/
H A Dnative_drm.c57 const struct native_config **configs; local
93 configs = MALLOC(sizeof(*configs));
94 if (configs) {
95 configs[0] = &drmdpy->config->base;
100 return configs;
/external/mesa3d/src/gallium/state_trackers/egl/gdi/
H A Dnative_gdi.c46 struct native_config *configs; member in struct:gdi_display
297 const struct native_config **configs; local
301 if (!gdpy->configs) {
307 gdpy->configs = CALLOC(count, sizeof(*gdpy->configs));
308 if (!gdpy->configs)
312 struct native_config *nconf = &gdpy->configs[i];
325 configs = MALLOC(gdpy->num_configs * sizeof(*configs));
326 if (configs) {
[all...]
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dutils.c251 __DRIconfig **configs, **c; local
327 configs = calloc(1, (num_modes + 1) * sizeof *configs);
328 if (configs == NULL)
331 c = configs;
403 return configs;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DPerformanceResults.java348 private String[] read(boolean local, String buildName, String[][] configs, boolean force, File dataDir, String taskName, SubMonitor subMonitor) { argument
368 // Refresh configs
369 if (configs == null) {
372 setConfigInfo(configs);
380 if (configs != null) {
381 setConfigInfo(configs);
457 * @param configs All configurations to extract results. If <code>null</code>,
469 public String[] readAll(String buildName, String[][] configs, String pattern, File dataDir, int threshold, IProgressMonitor monitor) { argument
481 String[] names = read(true, null, configs, true, dataDir, null, subMonitor.newChild(100));
485 return read(false, null, configs, tru
687 setConfigInfo(String[][] configs) argument
[all...]
/external/mesa3d/src/egl/main/
H A Deglconfig.c53 * It is also recommended that when there are N configs, their
663 * Quick sort an array of configs. This differs from the standard
668 _eglSortConfigs(const _EGLConfig **configs, EGLint count, argument
679 _eglSwapConfigs(&configs[pivot], &configs[count / 2]);
683 while (i < count && compare(configs[i], configs[pivot], priv_data) < 0)
685 while (compare(configs[j], configs[pivot], priv_data) > 0)
688 _eglSwapConfigs(&configs[
710 _eglFilterConfigArray(_EGLArray *array, EGLConfig *configs, EGLint config_size, EGLint *num_configs, EGLBoolean (*match)(const _EGLConfig *, void *), EGLint (*compare)(const _EGLConfig *, const _EGLConfig *, void *), void *priv_data) argument
776 _eglChooseConfig(_EGLDriver *drv, _EGLDisplay *disp, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_configs) argument
831 _eglGetConfigs(_EGLDriver *drv, _EGLDisplay *disp, EGLConfig *configs, EGLint config_size, EGLint *num_config) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/fbdev/
H A Dnative_fbdev.c377 const struct native_config **configs; local
379 configs = MALLOC(sizeof(*configs));
380 if (configs) {
381 configs[0] = &fbdpy->config;
386 return configs;

Completed in 528 milliseconds

123