Home | History | Annotate | Download | only in functional

Lines Matching refs:deUint32

105 																	 deUint32 minFilter,
106 deUint32 magFilter,
107 deUint32 wrapS,
108 deUint32 wrapT,
109 deUint32 internalFormat,
124 const deUint32 m_minFilter;
125 const deUint32 m_magFilter;
126 const deUint32 m_wrapS;
127 const deUint32 m_wrapT;
129 const deUint32 m_internalFormat;
168 deUint32 minFilter,
169 deUint32 magFilter,
170 deUint32 wrapS,
171 deUint32 wrapT,
172 deUint32 internalFormat,
249 const deUint32 step = 0x00ffffff / (numLevels*m_depth - 1);
250 const deUint32 rgb = step * (levelNdx + layerFaceNdx*numLevels);
251 const deUint32 colorA = 0xff000000 | rgb;
252 const deUint32 colorB = 0xff000000 | ~rgb;
324 const deUint32 randomSeed = deStringHash(getName()) ^ deInt32Hash(m_caseNdx) ^ m_testCtx.getCommandLine().getBaseSeed();
431 deUint32 mode;
442 deUint32 mode;
456 deUint32 mode;
479 deUint32 format;
508 const deUint32 minFilter = minFilterModes[filterNdx].mode;
510 const deUint32 format = filterableFormatsByType[fmtNdx].format;
513 const deUint32 magFilter = isMipmap ? GL_LINEAR : minFilter;
515 const deUint32 wrapS = GL_REPEAT;
516 const deUint32 wrapT = GL_REPEAT;
539 const deUint32 minFilter = minFilterModes[filterNdx].mode;
541 const deUint32 format = GL_RGBA8;
543 const deUint32 magFilter = isMipmap ? GL_LINEAR : minFilter;
544 const deUint32 wrapS = GL_REPEAT;
545 const deUint32 wrapT = GL_REPEAT;
573 const deUint32 minFilter = minFilterModes[minFilterNdx].mode;
574 const deUint32 magFilter = magFilterModes[magFilterNdx].mode;
575 const deUint32 format = GL_RGBA8;
576 const deUint32 wrapS = wrapModes[wrapSNdx].mode;
577 const deUint32 wrapT = wrapModes[wrapTNdx].mode;
602 const deUint32 filter = isLinear ? GL_LINEAR : GL_NEAREST;