Home
last modified time | relevance | path

Searched refs:isRowMajorMatrix (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DOutputASM.h38 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…
DOutputASM.cpp344 …: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/
DProgram.cpp52 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()
DProgram.h49 bool isRowMajorMatrix = false; member