HomeSort by relevance Sort by last modified time
    Searched refs:attribMap (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/common/
utils.c 441 static const struct { unsigned int attrib, offset; } attribMap[] = {
502 switch (attribMap[index].attrib) {
527 ((char *) &config->modes + attribMap[index].offset);
548 for (i = 0; i < ARRAY_SIZE(attribMap); i++)
549 if (attribMap[i].attrib == attrib)
567 if (index >= 0 && index < ARRAY_SIZE(attribMap)) {
568 *attrib = attribMap[index].attrib;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 213 final Map<String, String> attribMap = new HashMap<String, String>();
220 attribMap.put(fullyQualifiedName, attributes.getValue(i));
222 return attribMap;
  /external/mesa3d/src/glx/
dri_common.c 212 } attribMap[] = {
264 for (i = 0; i < ARRAY_SIZE(attribMap); i++)
265 if (attribMap[i].attrib == attrib) {
266 glxValue = *(unsigned int *) ((char *) mode + attribMap[i].offset);
  /external/deqp/modules/egl/
teglResizeTests.cpp 76 using eglu::AttribMap;
133 AttribMap attribMap;
135 attribMap[EGL_SURFACE_TYPE] = surfaceType;
136 attribMap[EGL_RENDERABLE_TYPE] = EGL_OPENGL_ES2_BIT;
138 return eglu::chooseSingleConfig(egl, eglDisplay, attribMap);
teglImageUtil.cpp 62 using eglu::AttribMap;
159 virtual AttribMap getCreateAttribs (void) const = 0;
165 AttribMap attribMap = getCreateAttribs();
167 attribMap[EGL_IMAGE_PRESERVED_KHR] = EGL_TRUE;
170 const vector<EGLint> attribs = eglu::attribMapToList(attribMap);
187 AttribMap getCreateAttribs (void) const;
223 AttribMap TextureImageSource::getCreateAttribs (void) const
225 AttribMap ret;
340 AttribMap getCreateAttribs (void) const { return AttribMap();
    [all...]

Completed in 205 milliseconds