Home
last modified time | relevance | path

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

/external/skia/src/sksl/
DSkSLBuiltinTypes.cpp128 , fFloat3x3(MakeMatrixType("float3x3", "f33", *fFloat, /*columns=*/3, /*rows=*/3)) in BuiltinTypes()
219 fFloat3x3.get(), fFloat3x4.get(), fFloat4x2.get(), fFloat4x3.get(),
226 {fFloat2x2.get(), fFloat3x3.get(), fFloat4x4.get()}))
DSkSLUtil.cpp59 if (type == *context.fTypes.fFloat3x3) { *outType = kFloat3x3_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h68 const std::unique_ptr<Type> fFloat3x3; variable
DSkSLCompiler.cpp274 symbols->addAlias("mat3", types.fFloat3x3.get()); in add_glsl_type_aliases()
/external/skia/tests/
DSkSLMemoryLayoutTest.cpp35 REPORTER_ASSERT(r, 48 == layout.size(*context.fTypes.fFloat3x3)); in DEF_TEST()
52 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat3x3)); in DEF_TEST()
122 REPORTER_ASSERT(r, 48 == layout.size(*context.fTypes.fFloat3x3)); in DEF_TEST()
139 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat3x3)); in DEF_TEST()
/external/skia/src/sksl/dsl/
DDSLType.cpp121 return *context.fTypes.fFloat3x3; in skslType()
/external/skia/src/sksl/ir/
DSkSLType.cpp81 case 3: return *context.fTypes.fFloat3x3; in toCompound()
/external/skia/src/sksl/codegen/
DSkSLHCodeGenerator.cpp68 } else if (type == *context.fTypes.fFloat3x3 || type == *context.fTypes.fHalf3x3) { in ParameterCType()
DSkSLGLSLCodeGenerator.cpp288 else if (type == *fContext.fTypes.fFloat3x3 || type == *fContext.fTypes.fHalf3x3) { in writeDeterminantHack()
355 else if (type == *fContext.fTypes.fFloat3x3 || type == *fContext.fTypes.fHalf3x3) { in writeInverseHack()
DSkSLCPPCodeGenerator.cpp469 if (type == *context.fTypes.fFloat3x3) { return "kFloat3x3_GrSLType"; } in glsltype_string()
/external/skia/src/core/
DSkRuntimeEffect.cpp108 if (*type == *ctx.fTypes.fFloat3x3) { v->type = Type::kFloat3x3; return true; } in init_uniform_type()