Home
last modified time | relevance | path

Searched refs:makeMatrixType (Results 1 – 3 of 3) sorted by relevance

/third_party/glslang/SPIRV/
DSpvBuilder.h176 Id makeMatrixType(Id component, int cols, int rows);
DGlslangToSpv.cpp2077 spv::Id mat43 = builder.makeMatrixType(builder.makeFloatType(32), 4, 3); in getForcedType()
2078 spv::Id mat34 = builder.makeMatrixType(builder.makeFloatType(32), 3, 4); in getForcedType()
3757 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows()); in convertGlslangToSpvType()
7864 typeId = builder.makeMatrixType(builder.makeFloatType(32), 4, 3); in createMiscOperation()
7868 typeId = builder.makeMatrixType(builder.makeFloatType(32), 4, 3); in createMiscOperation()
DSpvBuilder.cpp378 Id Builder::makeMatrixType(Id component, int cols, int rows) in makeMatrixType() function in spv::Builder