Searched refs:api_mask (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
H A Ddri_util.h169 unsigned int api_mask; member in struct:__DRIscreenRec
H A Ddri_util.c107 psp->api_mask = (1 << __DRI_API_OPENGL);
179 if (!(screen->api_mask & (1 << api))) {
560 return screen->api_mask;
/external/mesa3d/src/mesa/drivers/dri/common/
H A Ddri_util.h169 unsigned int api_mask; member in struct:__DRIscreenRec
H A Ddri_util.c107 psp->api_mask = (1 << __DRI_API_OPENGL);
179 if (!(screen->api_mask & (1 << api))) {
560 return screen->api_mask;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Degl_g3d.c228 EGLint api_mask, enum pipe_format depth_stencil_format,
278 api_mask &= ~EGL_OPENVG_BIT;
281 conf->Conformant = api_mask;
282 conf->RenderableType = api_mask;
294 if (api_mask & EGL_OPENVG_BIT)
227 init_config_attributes(_EGLConfig *conf, const struct native_config *nconf, EGLint api_mask, enum pipe_format depth_stencil_format, EGLint preserve_buffer, EGLint max_swap_interval, EGLBoolean pre_alpha) argument
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d.c228 EGLint api_mask, enum pipe_format depth_stencil_format,
278 api_mask &= ~EGL_OPENVG_BIT;
281 conf->Conformant = api_mask;
282 conf->RenderableType = api_mask;
294 if (api_mask & EGL_OPENVG_BIT)
227 init_config_attributes(_EGLConfig *conf, const struct native_config *nconf, EGLint api_mask, enum pipe_format depth_stencil_format, EGLint preserve_buffer, EGLint max_swap_interval, EGLBoolean pre_alpha) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
H A Ddri2.c809 sPriv->api_mask = 0;
811 sPriv->api_mask |= 1 << __DRI_API_OPENGL;
813 sPriv->api_mask |= 1 << __DRI_API_GLES;
815 sPriv->api_mask |= 1 << __DRI_API_GLES2;
/external/mesa3d/src/gallium/state_trackers/dri/drm/
H A Ddri2.c809 sPriv->api_mask = 0;
811 sPriv->api_mask |= 1 << __DRI_API_OPENGL;
813 sPriv->api_mask |= 1 << __DRI_API_GLES;
815 sPriv->api_mask |= 1 << __DRI_API_GLES2;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_screen.c1056 unsigned int api_mask; local
1115 api_mask = (1 << __DRI_API_OPENGL);
1117 api_mask |= (1 << __DRI_API_GLES);
1120 api_mask |= (1 << __DRI_API_GLES2);
1124 psp->api_mask = api_mask;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_screen.c1056 unsigned int api_mask; local
1115 api_mask = (1 << __DRI_API_OPENGL);
1117 api_mask |= (1 << __DRI_API_GLES);
1120 api_mask |= (1 << __DRI_API_GLES2);
1124 psp->api_mask = api_mask;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_screen.c1056 unsigned int api_mask; local
1115 api_mask = (1 << __DRI_API_OPENGL);
1117 api_mask |= (1 << __DRI_API_GLES);
1120 api_mask |= (1 << __DRI_API_GLES2);
1124 psp->api_mask = api_mask;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_screen.c1056 unsigned int api_mask; local
1115 api_mask = (1 << __DRI_API_OPENGL);
1117 api_mask |= (1 << __DRI_API_GLES);
1120 api_mask |= (1 << __DRI_API_GLES2);
1124 psp->api_mask = api_mask;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_screen.c1056 unsigned int api_mask; local
1115 api_mask = (1 << __DRI_API_OPENGL);
1117 api_mask |= (1 << __DRI_API_GLES);
1120 api_mask |= (1 << __DRI_API_GLES2);
1124 psp->api_mask = api_mask;
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_screen.c1056 unsigned int api_mask; local
1115 api_mask = (1 << __DRI_API_OPENGL);
1117 api_mask |= (1 << __DRI_API_GLES);
1120 api_mask |= (1 << __DRI_API_GLES2);
1124 psp->api_mask = api_mask;
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Degl_dri2.c464 unsigned int api_mask; local
467 api_mask = dri2_dpy->dri2->getAPIMask(dri2_dpy->dri_screen);
470 api_mask = 1 << __DRI_API_OPENGL | 1 << __DRI_API_GLES | 1 << __DRI_API_GLES2;
474 if (api_mask & (1 <<__DRI_API_OPENGL))
476 if (api_mask & (1 <<__DRI_API_GLES))
478 if (api_mask & (1 << __DRI_API_GLES2))
/external/mesa3d/src/egl/drivers/dri2/
H A Degl_dri2.c464 unsigned int api_mask; local
467 api_mask = dri2_dpy->dri2->getAPIMask(dri2_dpy->dri_screen);
470 api_mask = 1 << __DRI_API_OPENGL | 1 << __DRI_API_GLES | 1 << __DRI_API_GLES2;
474 if (api_mask & (1 <<__DRI_API_OPENGL))
476 if (api_mask & (1 <<__DRI_API_GLES))
478 if (api_mask & (1 << __DRI_API_GLES2))
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dget.c1453 int api_mask = 0, api_bit; local
1462 api_mask = values[i].offset;
1465 if (!(api_mask & api_bit))
/external/mesa3d/src/mesa/main/
H A Dget.c1453 int api_mask = 0, api_bit; local
1462 api_mask = values[i].offset;
1465 if (!(api_mask & api_bit))

Completed in 339 milliseconds