/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | blocklayout.h | 32 constexpr BlockMemberInfo(int offset, int arrayStride, int matrixStride, bool isRowMajorMatrix) in BlockMemberInfo() 36 isRowMajorMatrix(isRowMajorMatrix) in BlockMemberInfo() 42 bool isRowMajorMatrix, in BlockMemberInfo() 47 isRowMajorMatrix(isRowMajorMatrix), in BlockMemberInfo() 62 bool isRowMajorMatrix = false; member 84 bool isRowMajorMatrix); 104 bool isRowMajorMatrix, 109 bool isRowMajorMatrix, 128 bool isRowMajorMatrix, 134 bool isRowMajorMatrix, in advanceOffset() argument [all …]
|
D | blocklayout.cpp | 101 bool isRowMajorMatrix, in TraverseArrayOfArraysVariable() argument 117 TraverseArrayOfArraysVariable(elementVar, arrayNestingIndex, isRowMajorMatrix, visitor); in TraverseArrayOfArraysVariable() 127 visitor->visitVariable(elementVar, isRowMajorMatrix); in TraverseArrayOfArraysVariable() 177 bool isRowMajorMatrix) in encodeType() argument 182 getBlockLayoutInfo(type, arraySizes, isRowMajorMatrix, &arrayStride, &matrixStride); in encodeType() 187 isRowMajorMatrix); in encodeType() 189 advanceOffset(type, arraySizes, isRowMajorMatrix, arrayStride, matrixStride); in encodeType() 227 bool isRowMajorMatrix, in getBlockLayoutInfo() argument 250 bool isRowMajorMatrix, in getBlockLayoutInfo() argument 263 baseAlignment = getTypeBaseAlignment(type, isRowMajorMatrix); in getBlockLayoutInfo() [all …]
|
D | blocklayoutHLSL.cpp | 31 bool isRowMajorMatrix, in getBlockLayoutInfo() argument 57 const int numRegisters = gl::MatrixRegisterCount(type, isRowMajorMatrix); in getBlockLayoutInfo() 80 bool isRowMajorMatrix, in advanceOffset() argument 98 const int numRegisters = gl::MatrixRegisterCount(type, isRowMajorMatrix); in advanceOffset() 99 const int numComponents = gl::MatrixComponentCount(type, isRowMajorMatrix); in advanceOffset()
|
D | blocklayoutHLSL.h | 49 bool isRowMajorMatrix, 54 bool isRowMajorMatrix,
|
D | StructureHLSL.cpp | 187 const bool isRowMajorMatrix = !useHLSLRowMajorPacking; in postPaddingString() local 189 numComponents = gl::MatrixComponentCount(glType, isRowMajorMatrix); in postPaddingString()
|
D | ShaderStorageBlockOutputHLSL.cpp | 743 mRowMajor = memberInfo.isRowMajorMatrix; in writeDotOperatorOutput()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | blocklayout.h | 29 constexpr BlockMemberInfo(int offset, int arrayStride, int matrixStride, bool isRowMajorMatrix) in BlockMemberInfo() 33 isRowMajorMatrix(isRowMajorMatrix) in BlockMemberInfo() 39 bool isRowMajorMatrix, in BlockMemberInfo() 44 isRowMajorMatrix(isRowMajorMatrix), in BlockMemberInfo() 59 bool isRowMajorMatrix = false; member 81 bool isRowMajorMatrix); 106 bool isRowMajorMatrix, 111 bool isRowMajorMatrix, 130 bool isRowMajorMatrix, 136 bool isRowMajorMatrix, in advanceOffset() argument [all …]
|
D | blocklayout.cpp | 108 bool isRowMajorMatrix, in TraverseArrayOfArraysVariable() argument 124 TraverseArrayOfArraysVariable(elementVar, arrayNestingIndex, isRowMajorMatrix, visitor); in TraverseArrayOfArraysVariable() 135 visitor->visitVariable(elementVar, isRowMajorMatrix); in TraverseArrayOfArraysVariable() 185 bool isRowMajorMatrix) in encodeType() argument 190 getBlockLayoutInfo(type, arraySizes, isRowMajorMatrix, &arrayStride, &matrixStride); in encodeType() 195 isRowMajorMatrix); in encodeType() 197 advanceOffset(type, arraySizes, isRowMajorMatrix, arrayStride, matrixStride); in encodeType() 270 bool isRowMajorMatrix, in getBlockLayoutInfo() argument 293 bool isRowMajorMatrix, in getBlockLayoutInfo() argument 306 baseAlignment = getTypeBaseAlignment(type, isRowMajorMatrix); in getBlockLayoutInfo() [all …]
|
D | blocklayoutHLSL.cpp | 31 bool isRowMajorMatrix, in getBlockLayoutInfo() argument 57 const int numRegisters = gl::MatrixRegisterCount(type, isRowMajorMatrix); in getBlockLayoutInfo() 80 bool isRowMajorMatrix, in advanceOffset() argument 98 const int numRegisters = gl::MatrixRegisterCount(type, isRowMajorMatrix); in advanceOffset() 99 const int numComponents = gl::MatrixComponentCount(type, isRowMajorMatrix); in advanceOffset()
|
D | ShaderStorageBlockOutputHLSL.cpp | 378 bool *isRowMajorMatrix) const in getMatrixStride() 382 *isRowMajorMatrix = rowMajor; in getMatrixStride() 391 return getMatrixStride(binaryNode->getLeft(), storage, rowMajor, isRowMajorMatrix); in getMatrixStride() 399 isRowMajorMatrix); in getMatrixStride() 491 bool isRowMajorMatrix = false; in traverseSSBOAccess() local 492 int matrixStride = getMatrixStride(node, storage, rowMajor, &isRowMajorMatrix); in traverseSSBOAccess() 495 node->getType(), method, storage, isRowMajorMatrix, matrixStride, unsizedArrayStride, in traverseSSBOAccess() 628 if (blockMemberInfo->isRowMajorMatrix) in writeEOpIndexDirectOrIndirectOutput()
|
D | blocklayoutHLSL.h | 49 bool isRowMajorMatrix, 54 bool isRowMajorMatrix,
|
D | StructureHLSL.cpp | 252 const bool isRowMajorMatrix = !useHLSLRowMajorPacking; in postPaddingString() local 254 numComponents = gl::MatrixComponentCount(glType, isRowMajorMatrix); in postPaddingString()
|
/third_party/skia/third_party/externals/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()
|
/third_party/flutter/skia/third_party/externals/angle2/src/common/ |
D | utilities.cpp | 533 int MatrixRegisterCount(GLenum type, bool isRowMajorMatrix) in MatrixRegisterCount() argument 536 return isRowMajorMatrix ? VariableRowCount(type) : VariableColumnCount(type); in MatrixRegisterCount() 539 int MatrixComponentCount(GLenum type, bool isRowMajorMatrix) in MatrixComponentCount() argument 542 return isRowMajorMatrix ? VariableColumnCount(type) : VariableRowCount(type); in MatrixComponentCount()
|
D | utilities.h | 49 int MatrixRegisterCount(GLenum type, bool isRowMajorMatrix); 50 int MatrixComponentCount(GLenum type, bool isRowMajorMatrix);
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | utilities.h | 50 int MatrixRegisterCount(GLenum type, bool isRowMajorMatrix); 51 int MatrixComponentCount(GLenum type, bool isRowMajorMatrix);
|
D | utilities.cpp | 654 int MatrixRegisterCount(GLenum type, bool isRowMajorMatrix) in MatrixRegisterCount() argument 657 return isRowMajorMatrix ? VariableRowCount(type) : VariableColumnCount(type); in MatrixRegisterCount() 660 int MatrixComponentCount(GLenum type, bool isRowMajorMatrix) in MatrixComponentCount() argument 663 return isRowMajorMatrix ? VariableColumnCount(type) : VariableRowCount(type); in MatrixComponentCount()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | ProgramGL.cpp | 862 GLint isRowMajorMatrix = 0; in getUniformBlockMemberInfo() local 864 &isRowMajorMatrix); in getUniformBlockMemberInfo() 865 memberInfoOut->isRowMajorMatrix = gl::ConvertToBool(isRowMajorMatrix); in getUniformBlockMemberInfo() 892 memberInfoOut->isRowMajorMatrix = params[1] != 0; in getShaderStorageBlockMemberInfo()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | ProgramGL.cpp | 870 GLint isRowMajorMatrix = 0; in getUniformBlockMemberInfo() local 872 &isRowMajorMatrix); in getUniformBlockMemberInfo() 873 memberInfoOut->isRowMajorMatrix = gl::ConvertToBool(isRowMajorMatrix); in getUniformBlockMemberInfo() 900 memberInfoOut->isRowMajorMatrix = params[1] != 0; in getShaderStorageBlockMemberInfo()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | ProgramVk.cpp | 33 bool isRowMajorMatrix, in advanceOffset() argument 42 sh::Std140BlockEncoder::advanceOffset(type, arraySizes, isRowMajorMatrix, arrayStride, in advanceOffset()
|
/third_party/skia/third_party/externals/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
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | ProgramVk.cpp | 34 bool isRowMajorMatrix, in advanceOffset() argument 43 sh::Std140BlockEncoder::advanceOffset(type, arraySizes, isRowMajorMatrix, arrayStride, in advanceOffset()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | queryutils.cpp | 1685 return static_cast<GLint>(uniform.blockInfo.isRowMajorMatrix); in GetUniformResourceProperty() 1731 return static_cast<GLint>(bufferVariable.blockInfo.isRowMajorMatrix); in GetBufferVariableResourceProperty()
|