Lines Matching refs:attribSpec
2183 gls::DrawTestSpec::AttributeSpec attribSpec; in init() local
2185 …attribSpec.inputType = random.chooseWeighted<gls::DrawTestSpec::InputType> (DE_ARRAY_BEGIN(input… in init()
2186 …attribSpec.outputType = random.chooseWeighted<gls::DrawTestSpec::OutputType> (DE_ARRAY_BEGIN(out… in init()
2187 attribSpec.storage = gls::DrawTestSpec::STORAGE_BUFFER; in init()
2188 …attribSpec.usage = random.chooseWeighted<gls::DrawTestSpec::Usage> (DE_ARRAY_BEGIN(usages), … in init()
2189 attribSpec.componentCount = random.getInt(1, 4); in init()
2190 …attribSpec.offset = random.chooseWeighted<int, const int*, const float*>(DE_ARRAY_BEGIN(offsets… in init()
2191 …attribSpec.stride = random.chooseWeighted<int, const int*, const float*>(DE_ARRAY_BEGIN(strides… in init()
2192 attribSpec.normalize = random.getBool(); in init()
2193 …attribSpec.instanceDivisor = random.chooseWeighted<int, const int*, const float*>(DE_ARRAY_BEGIN(… in init()
2194 attribSpec.useDefaultAttribute = random.getBool(); in init()
2197 valid = attribSpec.valid(spec.apiType); in init()
2200 …if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.i… in init()
2206 spec.attribs.push_back(attribSpec); in init()