Home
last modified time | relevance | path

Searched refs:fHalf3x3 (Results 1 – 9 of 9) sorted by relevance

/external/skia/src/sksl/
DSkSLBuiltinTypes.cpp137 , fHalf3x3(MakeMatrixType("half3x3", "h33", *fHalf, /*columns=*/3, /*rows=*/3)) in BuiltinTypes()
223 {fHalf2x2.get(), fHalf2x3.get(), fHalf2x4.get(), fHalf3x2.get(), fHalf3x3.get(),
228 MakeGenericType("$squareHMat", {fHalf2x2.get(), fHalf3x3.get(), fHalf4x4.get()}))
DSkSLUtil.cpp66 if (type == *context.fTypes.fHalf3x3 ) { *outType = kHalf3x3_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h78 const std::unique_ptr<Type> fHalf3x3; variable
/external/skia/src/sksl/dsl/
DDSLType.cpp93 return *context.fTypes.fHalf3x3; in skslType()
/external/skia/src/sksl/ir/
DSkSLType.cpp114 case 3: return *context.fTypes.fHalf3x3; 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.cpp476 if (type == *context.fTypes.fHalf3x3 ) { return "kHalf3x3_GrSLType"; } in glsltype_string()
/external/skia/src/core/
DSkRuntimeEffect.cpp109 if (*type == *ctx.fTypes.fHalf3x3) { v->type = Type::kFloat3x3; return true; } in init_uniform_type()