Searched refs:fFloat3x3 (Results 1 – 11 of 11) sorted by relevance
/external/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 128 , 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()}))
|
D | SkSLUtil.cpp | 59 if (type == *context.fTypes.fFloat3x3) { *outType = kFloat3x3_GrSLType; return true; } in type_to_grsltype()
|
D | SkSLBuiltinTypes.h | 68 const std::unique_ptr<Type> fFloat3x3; variable
|
D | SkSLCompiler.cpp | 274 symbols->addAlias("mat3", types.fFloat3x3.get()); in add_glsl_type_aliases()
|
/external/skia/tests/ |
D | SkSLMemoryLayoutTest.cpp | 35 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/ |
D | DSLType.cpp | 121 return *context.fTypes.fFloat3x3; in skslType()
|
/external/skia/src/sksl/ir/ |
D | SkSLType.cpp | 81 case 3: return *context.fTypes.fFloat3x3; in toCompound()
|
/external/skia/src/sksl/codegen/ |
D | SkSLHCodeGenerator.cpp | 68 } else if (type == *context.fTypes.fFloat3x3 || type == *context.fTypes.fHalf3x3) { in ParameterCType()
|
D | SkSLGLSLCodeGenerator.cpp | 288 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()
|
D | SkSLCPPCodeGenerator.cpp | 469 if (type == *context.fTypes.fFloat3x3) { return "kFloat3x3_GrSLType"; } in glsltype_string()
|
/external/skia/src/core/ |
D | SkRuntimeEffect.cpp | 108 if (*type == *ctx.fTypes.fFloat3x3) { v->type = Type::kFloat3x3; return true; } in init_uniform_type()
|