Home
last modified time | relevance | path

Searched refs:isRowMajor (Results 1 – 12 of 12) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp167 , isRowMajor (false) in BufferVarLayoutEntry()
180 bool isRowMajor; member
199 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false") in operator <<()
381 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140BaseAlignment() local
382 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140BaseAlignment()
422 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd430BaseAlignment() local
423 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd430BaseAlignment()
497 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeReferenceLayout() local
498 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) in computeReferenceLayout()
503 entry.isRowMajor = isRowMajor; in computeReferenceLayout()
[all …]
/external/deqp/modules/glshared/
DglsUniformBlockCase.cpp242 , isRowMajor (false) in UniformLayoutEntry()
253 bool isRowMajor; member
264 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false") in operator <<()
424 bool isRowMajor = !!(type.getFlags() & LAYOUT_ROW_MAJOR); in computeStd140BaseAlignment() local
425 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140BaseAlignment()
487 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140Layout() local
488 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140Layout()
490 int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) in computeStd140Layout()
496 entry.isRowMajor = isRowMajor; in computeStd140Layout()
537 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140Layout() local
[all …]
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutCase.cpp158 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false") in operator <<()
296 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140BaseAlignment() local
297 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140BaseAlignment()
337 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd430BaseAlignment() local
338 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd430BaseAlignment()
412 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeReferenceLayout() local
413 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) in computeReferenceLayout()
418 entry.isRowMajor = isRowMajor; in computeReferenceLayout()
461 const bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeReferenceLayout() local
462 const int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeReferenceLayout()
[all …]
DvktSSBOLayoutCase.hpp148 , isRowMajor (false) in BufferVarLayoutEntry()
161 bool isRowMajor; member
/external/deqp/framework/opengl/
DgluProgramInterfaceQuery.hpp70 bool isRowMajor; //!< GL_IS_ROW_MAJOR member
83 , isRowMajor (0) in InterfaceVariableInfo()
DgluProgramInterfaceQuery.cpp96 …info.isRowMajor = getProgramResourceUint(gl, program, programInterface, index, GL_IS_ROW_MAJOR) !… in getProgramInterfaceVariableInfo()
/external/deqp/external/vulkancts/modules/vulkan/ubo/
DvktUniformBlockCase.cpp172 << ", isRowMajor = " << (entry.isRowMajor ? "true" : "false") in operator <<()
374 bool isRowMajor = !!(type.getFlags() & LAYOUT_ROW_MAJOR); in computeStd140BaseAlignment() local
375 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140BaseAlignment()
437 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140Layout() local
438 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType) in computeStd140Layout()
440 int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(basicType) in computeStd140Layout()
446 entry.isRowMajor = isRowMajor; in computeStd140Layout()
487 bool isRowMajor = !!(layoutFlags & LAYOUT_ROW_MAJOR); in computeStd140Layout() local
488 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(elemBasicType) in computeStd140Layout()
490 int numVecs = isRowMajor ? glu::getDataTypeMatrixNumRows(elemBasicType) in computeStd140Layout()
[all …]
DvktUniformBlockCase.hpp268 , isRowMajor (false) in UniformLayoutEntry()
280 bool isRowMajor; member
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.h113 bool isRowMajor; variable
DOutputASM.cpp95 : mCurrentOffset(0), isRowMajor(rowMajor) in BlockLayoutEncoder()
104 getBlockLayoutInfo(type, type.getArraySize(), isRowMajor, &arrayStride, &matrixStride); in encodeType()
109 (matrixStride > 0) && isRowMajor); in encodeType()
111 advanceOffset(type, type.getArraySize(), isRowMajor, arrayStride, matrixStride); in encodeType()
3221 bool isRowMajor = block->matrixPacking() == EmpRowMajor; in declareUniform() local
3223 … block->blockStorage(), isRowMajor, registerIndex, blockId)); in declareUniform()
3226 Std140BlockEncoder currentBlockEncoder(isRowMajor); in declareUniform()
/external/deqp/modules/gles3/functional/
Des3fShaderStateQueryTests.cpp1620 GLint isRowMajor; in test() member
1720 …am(m_testCtx, *this, program, uniformIndex, GL_UNIFORM_IS_ROW_MAJOR, uniformTypes[ndx].isRowMajor); in test()
/external/deqp/modules/gles2/functional/
Des2fShaderStateQueryTests.cpp1322 GLint isRowMajor; in test() member