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 123 …virtual void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, … 124 …virtual void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int a… 138 …void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arr… 139 …void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStri…
|
D | OutputASM.cpp | 344 …:getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arraySt… in getBlockLayoutInfo() argument 357 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize(); in getBlockLayoutInfo() 378 …oder::advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStr… in advanceOffset() argument 387 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize(); in advanceOffset()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Program.cpp | 52 isRowMajorMatrix = uniform.blockInfo.isRowMajorMatrix; in BlockInfo() 1973 if(member1.blockInfo.isRowMajorMatrix != member2.blockInfo.isRowMajorMatrix) in areMatchingUniformBlocks() 2877 case GL_UNIFORM_IS_ROW_MAJOR: return static_cast<GLint>(uniform.blockInfo.isRowMajorMatrix); in getActiveUniformi()
|
D | Program.h | 49 bool isRowMajorMatrix = false; member
|