Lines Matching refs:params
810 TextureParameters params;
832 params.internalFormat = s_testSizedInternalFormats[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testSizedInternalFormats) - 1)];
834 bool isFilterable = glu::isGLInternalColorFormatFilterable(params.internalFormat);
836 params.wrapModeS = s_testWrapModes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testWrapModes) - 1)];
837 params.wrapModeT = s_testWrapModes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testWrapModes) - 1)];
838 params.wrapModeR = s_testWrapModes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testWrapModes) - 1)];
840 params.magFilter = isFilterable ? s_testMagFilters[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testMagFilters) - 1)] : GL_NEAREST;
843 params.minFilter = isFilterable ?
847 params.minFilter = isFilterable ?
852 m_textureParams.push_back(params);
856 tcu::TextureFormat texFormat = glu::mapGLInternalFormat((deUint32)params.internalFormat);