Home
last modified time | relevance | path

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

/external/skia/tests/
DSkSLMemoryLayoutTest.cpp32 REPORTER_ASSERT(r, 32 == layout.size(*context.fMat2x2_Type)); in DEF_TEST()
49 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fMat2x2_Type)); in DEF_TEST()
113 REPORTER_ASSERT(r, 16 == layout.size(*context.fMat2x2_Type)); in DEF_TEST()
130 REPORTER_ASSERT(r, 8 == layout.alignment(*context.fMat2x2_Type)); in DEF_TEST()
/external/skia/src/sksl/
DSkSLContext.h45 , fMat2x2_Type(new Type(String("mat2"), *fFloat_Type, 2, 2))
129 , fMat_Type(new Type(String("$mat"), { fMat2x2_Type.get(), fMat2x3_Type.get(),
189 const std::unique_ptr<Type> fMat2x2_Type; variable
DSkSLCompiler.cpp88 types->addWithoutOwnership(String("mat2x2"), fContext.fMat2x2_Type.get()); in Compiler()
/external/skia/src/sksl/ir/
DSkSLType.cpp56 case 2: return *context.fMat2x2_Type; in toCompound()