Home
last modified time | relevance | path

Searched refs:fFloat3x3_Type (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/tests/
DSkSLMemoryLayoutTest.cpp32 REPORTER_ASSERT(r, 48 == layout.size(*context.fFloat3x3_Type)); in DEF_TEST()
49 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fFloat3x3_Type)); in DEF_TEST()
113 REPORTER_ASSERT(r, 48 == layout.size(*context.fFloat3x3_Type)); in DEF_TEST()
130 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fFloat3x3_Type)); in DEF_TEST()
/third_party/flutter/skia/src/sksl/
DSkSLContext.h71 , fFloat3x3_Type(new Type("float3x3", *fFloat_Type, 3, 3)) in Context()
171 fFloat3x3_Type.get(), fFloat3x4_Type.get(),
277 const std::unique_ptr<Type> fFloat3x3_Type; variable
DSkSLHCodeGenerator.cpp64 } else if (type == *context.fFloat3x3_Type || type == *context.fHalf3x3_Type) { in ParameterCType()
DSkSLGLSLCodeGenerator.cpp283 else if (mat.fType == *fContext.fFloat3x3_Type || mat.fType == *fContext.fHalf3x3_Type) { in writeDeterminantHack()
349 else if (mat.fType == *fContext.fFloat3x3_Type || mat.fType == *fContext.fHalf3x3_Type) { in writeInverseHack()
DSkSLMetalCodeGenerator.cpp277 else if (mat.fType == *fContext.fFloat3x3_Type || mat.fType == *fContext.fHalf3x3_Type) { in writeInverseHack()
/third_party/flutter/skia/src/sksl/ir/
DSkSLType.cpp74 case 3: return *context.fFloat3x3_Type; in toCompound()