Home | History | Annotate | Download | only in functional

Lines Matching refs:numComponents

265 		int				numComponents	= 0;
268 numComponents = 4;
270 numComponents = 1;
278 numComponents = glu::getVarType(varying.type, varPath).getScalarSize();
281 if (tfMode == GL_SEPARATE_ATTRIBS && numComponents > maxTfSeparateComponents)
284 totalTfComponents += numComponents;
713 int numComponents = glu::getDataTypeScalarSize(type);
722 for (int compNdx = 0; compNdx < numComponents; compNdx++)
766 outOffset += numComponents*sizeof(deUint32);
1111 int numComponents = glu::getDataTypeScalarSize(attrib->type.getBasicType());
1118 if (scalarType == glu::TYPE_FLOAT) gl.vertexAttribPointer (loc, numComponents, GL_FLOAT, GL_FALSE, m_inputStride, ptr);
1119 else if (scalarType == glu::TYPE_INT) gl.vertexAttribIPointer (loc, numComponents, GL_INT, m_inputStride, ptr);
1120 else if (scalarType == glu::TYPE_UINT) gl.vertexAttribIPointer (loc, numComponents, GL_UNSIGNED_INT, m_inputStride, ptr);