Home | History | Annotate | Download | only in snippets
      1 int array[8];
      2 for(int i = 0; i < 8; ++i) array[i] = i;
      3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl;
      4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl;
      5 cout << "Row-major using stride:\n" <<
      6   Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
      7 
      8