Home | History | Annotate | Download | only in libGLESv2

Lines Matching refs:Rows

1295                 int rows = VariableRowCount(varying->type);
1297 for (int j = 0; j < rows; j++)
1299 int r = varying->reg + i * rows + j;
1339 if (rows > 1)
1363 int rows = VariableRowCount(varying->type);
1364 for (int j = 0; j < rows; j++)
1366 std::string n = str(varying->reg + i * rows + j);
1432 int rows = VariableRowCount(varying->type);
1433 for (int j = 0; j < rows; j++)
1435 std::string n = str(varying->reg + i * rows + j);
1443 if (rows > 1)
1570 int rows = VariableRowCount(attribute->type);
1572 if (rows + location > MAX_VERTEX_ATTRIBS)
1579 for (int i = 0; i < rows; i++)
1593 int rows = VariableRowCount(attribute->type);
1594 int availableIndex = AllocateFirstFreeBits(&usedLocations, rows, MAX_VERTEX_ATTRIBS);
1596 if (availableIndex == -1 || availableIndex + rows > MAX_VERTEX_ATTRIBS)
1610 int rows = std::max(VariableRowCount(mLinkedAttribute[attributeIndex].type), 1);
1612 for (int r = 0; r < rows; r++)
1750 if (constantDescription.Rows == 1) // Vectors and scalars
1802 else if (constantDescription.Rows == constantDescription.Columns) // Square matrices
1807 switch (constantDescription.Rows)