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
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…
DOutputASM.cpp147 …: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/
DProgram.h48 bool isRowMajorMatrix; member
DProgram.cpp53 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()