Searched refs:MakeVectorType (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 34 std::unique_ptr<Type> BuiltinTypes::MakeVectorType(const char* name, in MakeVectorType() function in SkSL::BuiltinTypes 91 , fFloat2(MakeVectorType("float2", "f2", *fFloat, /*columns=*/2)) in BuiltinTypes() 92 , fFloat3(MakeVectorType("float3", "f3", *fFloat, /*columns=*/3)) in BuiltinTypes() 93 , fFloat4(MakeVectorType("float4", "f4", *fFloat, /*columns=*/4)) in BuiltinTypes() 95 , fHalf2(MakeVectorType("half2", "h2", *fHalf, /*columns=*/2)) in BuiltinTypes() 96 , fHalf3(MakeVectorType("half3", "h3", *fHalf, /*columns=*/3)) in BuiltinTypes() 97 , fHalf4(MakeVectorType("half4", "h4", *fHalf, /*columns=*/4)) in BuiltinTypes() 100 , fInt2(MakeVectorType("int2", "i2", *fInt, /*columns=*/2)) in BuiltinTypes() 101 , fInt3(MakeVectorType("int3", "i3", *fInt, /*columns=*/3)) in BuiltinTypes() 102 , fInt4(MakeVectorType("int4", "i4", *fInt, /*columns=*/4)) in BuiltinTypes() [all …]
|
D | SkSLBuiltinTypes.h | 140 static std::unique_ptr<Type> MakeVectorType(const char* name, const char* abbrev,
|