Searched refs:isRowMajorMatrix (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.h | 38 BlockMemberInfo() : offset(-1), arrayStride(-1), matrixStride(-1), isRowMajorMatrix(false) {} in BlockMemberInfo() 40 BlockMemberInfo(int offset, int arrayStride, int matrixStride, bool isRowMajorMatrix) in BlockMemberInfo() 44 isRowMajorMatrix(isRowMajorMatrix) in BlockMemberInfo() 55 bool isRowMajorMatrix; member 117 …virtual void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, … 118 …virtual void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int a… 132 …void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arr… 133 …void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStri…
|
D | OutputASM.cpp | 147 …:getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arraySt… in getBlockLayoutInfo() argument 160 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize(); in getBlockLayoutInfo() 181 …oder::advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStr… in advanceOffset() argument 190 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize(); in advanceOffset()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Program.h | 48 bool isRowMajorMatrix; member
|
D | Program.cpp | 53 isRowMajorMatrix = uniform.blockInfo.isRowMajorMatrix; in BlockInfo() 61 isRowMajorMatrix = false; in BlockInfo() 2698 case GL_UNIFORM_IS_ROW_MAJOR: return static_cast<GLint>(uniform.blockInfo.isRowMajorMatrix); in getActiveUniformi()
|