Searched refs:fFloat2x2 (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 61 , fFloat2x2(Type::MakeMatrixType("float2x2", "f22", *fFloat, /*columns=*/2, /*rows=*/2)) in BuiltinTypes() 148 , fMat(Type::MakeGenericType("$mat", {fFloat2x2.get(), fFloat2x3.get(), fFloat2x4.get(), 155 , fSquareMat(Type::MakeGenericType("$squareMat", {fInvalid.get(), fFloat2x2.get(),
|
D | SkSLUtil.cpp | 56 if (type == *context.fTypes.fFloat2x2) { *outType = kFloat2x2_GrSLType; return true; } in type_to_grsltype()
|
D | SkSLBuiltinTypes.h | 65 const std::unique_ptr<Type> fFloat2x2; variable
|
D | SkSLThreadContext.cpp | 85 symbols.addAlias("mat2x2", context.fTypes.fFloat2x2.get()); in setupSymbolTable()
|
D | SkSLCompiler.cpp | 264 symbols->addAlias("mat2", types.fFloat2x2.get()); in add_glsl_type_aliases()
|
/third_party/skia/tests/ |
D | SkSLMemoryLayoutTest.cpp | 35 REPORTER_ASSERT(r, 32 == layout.size(*context.fTypes.fFloat2x2)); in DEF_TEST() 52 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat2x2)); in DEF_TEST() 123 REPORTER_ASSERT(r, 16 == layout.size(*context.fTypes.fFloat2x2)); in DEF_TEST() 140 REPORTER_ASSERT(r, 8 == layout.alignment(*context.fTypes.fFloat2x2)); in DEF_TEST()
|
/third_party/skia/src/sksl/dsl/ |
D | DSLType.cpp | 109 return context.fTypes.fFloat2x2.get(); in get_type_from_type_constant()
|
/third_party/skia/src/sksl/codegen/ |
D | SkSLGLSLCodeGenerator.cpp | 260 if (type == *fContext.fTypes.fFloat2x2 || type == *fContext.fTypes.fHalf2x2) { in writeDeterminantHack() 326 if (type == *fContext.fTypes.fFloat2x2 || type == *fContext.fTypes.fHalf2x2) { in writeInverseHack()
|
/third_party/skia/src/sksl/ir/ |
D | SkSLType.cpp | 600 case 2: return *context.fTypes.fFloat2x2; in toCompound()
|
/third_party/skia/src/core/ |
D | SkRuntimeEffect.cpp | 119 if (*type == *ctx.fTypes.fFloat2x2) { v->type = Type::kFloat2x2; return true; } in init_uniform_type()
|