HomeSort by relevance Sort by last modified time
    Searched refs:isRowMajorMatrix (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/src/OpenGL/compiler/
OutputASM.h 38 BlockMemberInfo() : offset(-1), arrayStride(-1), matrixStride(-1), isRowMajorMatrix(false) {}
40 BlockMemberInfo(int offset, int arrayStride, int matrixStride, bool isRowMajorMatrix)
44 isRowMajorMatrix(isRowMajorMatrix)
55 bool isRowMajorMatrix;
117 virtual void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut) = 0;
118 virtual void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride) = 0;
132 void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut) override;
133 void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride) override;
OutputASM.cpp 149 void Std140BlockEncoder::getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut)
162 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize();
183 void Std140BlockEncoder::advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride)
192 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize();
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Program.h 48 bool isRowMajorMatrix;
Program.cpp 52 isRowMajorMatrix = uniform.blockInfo.isRowMajorMatrix;
60 isRowMajorMatrix = false;
    [all...]

Completed in 1629 milliseconds