Home
last modified time | relevance | path

Searched refs:fFloat3x3 (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/src/sksl/
DSkSLBuiltinTypes.cpp65 , fFloat3x3(Type::MakeMatrixType("float3x3", "f33", *fFloat, /*columns=*/3, /*rows=*/3)) in BuiltinTypes()
149 fFloat3x2.get(), fFloat3x3.get(), fFloat3x4.get(),
156 fFloat3x3.get(), fFloat4x4.get()}))
DSkSLUtil.cpp57 if (type == *context.fTypes.fFloat3x3) { *outType = kFloat3x3_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h69 const std::unique_ptr<Type> fFloat3x3; variable
DSkSLThreadContext.cpp89 symbols.addAlias("mat3x3", context.fTypes.fFloat3x3.get()); in setupSymbolTable()
DSkSLCompiler.cpp265 symbols->addAlias("mat3", types.fFloat3x3.get()); in add_glsl_type_aliases()
/third_party/skia/tests/
DSkSLMemoryLayoutTest.cpp37 REPORTER_ASSERT(r, 48 == layout.size(*context.fTypes.fFloat3x3)); in DEF_TEST()
54 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat3x3)); in DEF_TEST()
125 REPORTER_ASSERT(r, 48 == layout.size(*context.fTypes.fFloat3x3)); in DEF_TEST()
142 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat3x3)); in DEF_TEST()
/third_party/skia/src/sksl/dsl/
DDSLType.cpp117 return context.fTypes.fFloat3x3.get(); in get_type_from_type_constant()
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp271 else if (type == *fContext.fTypes.fFloat3x3 || type == *fContext.fTypes.fHalf3x3) { in writeDeterminantHack()
338 else if (type == *fContext.fTypes.fFloat3x3 || type == *fContext.fTypes.fHalf3x3) { in writeInverseHack()
/third_party/skia/src/sksl/ir/
DSkSLType.cpp608 case 3: return *context.fTypes.fFloat3x3; in toCompound()
/third_party/skia/src/core/
DSkRuntimeEffect.cpp121 if (*type == *ctx.fTypes.fFloat3x3) { v->type = Type::kFloat3x3; return true; } in init_uniform_type()