• Home
  • Raw
  • Download

Lines Matching full:matches

47     if (type.matches(*context.fTypes.fVoid    )) { *outType = SkSLType::kVoid;     return true; }  in type_to_sksltype()
48 if (type.matches(*context.fTypes.fBool )) { *outType = SkSLType::kBool; return true; } in type_to_sksltype()
49 if (type.matches(*context.fTypes.fBool2 )) { *outType = SkSLType::kBool2; return true; } in type_to_sksltype()
50 if (type.matches(*context.fTypes.fBool3 )) { *outType = SkSLType::kBool3; return true; } in type_to_sksltype()
51 if (type.matches(*context.fTypes.fBool4 )) { *outType = SkSLType::kBool4; return true; } in type_to_sksltype()
52 if (type.matches(*context.fTypes.fShort )) { *outType = SkSLType::kShort; return true; } in type_to_sksltype()
53 if (type.matches(*context.fTypes.fShort2 )) { *outType = SkSLType::kShort2; return true; } in type_to_sksltype()
54 if (type.matches(*context.fTypes.fShort3 )) { *outType = SkSLType::kShort3; return true; } in type_to_sksltype()
55 if (type.matches(*context.fTypes.fShort4 )) { *outType = SkSLType::kShort4; return true; } in type_to_sksltype()
56 if (type.matches(*context.fTypes.fUShort )) { *outType = SkSLType::kUShort; return true; } in type_to_sksltype()
57 if (type.matches(*context.fTypes.fUShort2 )) { *outType = SkSLType::kUShort2; return true; } in type_to_sksltype()
58 if (type.matches(*context.fTypes.fUShort3 )) { *outType = SkSLType::kUShort3; return true; } in type_to_sksltype()
59 if (type.matches(*context.fTypes.fUShort4 )) { *outType = SkSLType::kUShort4; return true; } in type_to_sksltype()
60 if (type.matches(*context.fTypes.fFloat )) { *outType = SkSLType::kFloat; return true; } in type_to_sksltype()
61 if (type.matches(*context.fTypes.fFloat2 )) { *outType = SkSLType::kFloat2; return true; } in type_to_sksltype()
62 if (type.matches(*context.fTypes.fFloat3 )) { *outType = SkSLType::kFloat3; return true; } in type_to_sksltype()
63 if (type.matches(*context.fTypes.fFloat4 )) { *outType = SkSLType::kFloat4; return true; } in type_to_sksltype()
64 if (type.matches(*context.fTypes.fFloat2x2)) { *outType = SkSLType::kFloat2x2; return true; } in type_to_sksltype()
65 if (type.matches(*context.fTypes.fFloat3x3)) { *outType = SkSLType::kFloat3x3; return true; } in type_to_sksltype()
66 if (type.matches(*context.fTypes.fFloat4x4)) { *outType = SkSLType::kFloat4x4; return true; } in type_to_sksltype()
67 if (type.matches(*context.fTypes.fHalf )) { *outType = SkSLType::kHalf; return true; } in type_to_sksltype()
68 if (type.matches(*context.fTypes.fHalf2 )) { *outType = SkSLType::kHalf2; return true; } in type_to_sksltype()
69 if (type.matches(*context.fTypes.fHalf3 )) { *outType = SkSLType::kHalf3; return true; } in type_to_sksltype()
70 if (type.matches(*context.fTypes.fHalf4 )) { *outType = SkSLType::kHalf4; return true; } in type_to_sksltype()
71 if (type.matches(*context.fTypes.fHalf2x2 )) { *outType = SkSLType::kHalf2x2; return true; } in type_to_sksltype()
72 if (type.matches(*context.fTypes.fHalf3x3 )) { *outType = SkSLType::kHalf3x3; return true; } in type_to_sksltype()
73 if (type.matches(*context.fTypes.fHalf4x4 )) { *outType = SkSLType::kHalf4x4; return true; } in type_to_sksltype()
74 if (type.matches(*context.fTypes.fInt )) { *outType = SkSLType::kInt; return true; } in type_to_sksltype()
75 if (type.matches(*context.fTypes.fInt2 )) { *outType = SkSLType::kInt2; return true; } in type_to_sksltype()
76 if (type.matches(*context.fTypes.fInt3 )) { *outType = SkSLType::kInt3; return true; } in type_to_sksltype()
77 if (type.matches(*context.fTypes.fInt4 )) { *outType = SkSLType::kInt4; return true; } in type_to_sksltype()
78 if (type.matches(*context.fTypes.fUInt )) { *outType = SkSLType::kUInt; return true; } in type_to_sksltype()
79 if (type.matches(*context.fTypes.fUInt2 )) { *outType = SkSLType::kUInt2; return true; } in type_to_sksltype()
80 if (type.matches(*context.fTypes.fUInt3 )) { *outType = SkSLType::kUInt3; return true; } in type_to_sksltype()
81 if (type.matches(*context.fTypes.fUInt4 )) { *outType = SkSLType::kUInt4; return true; } in type_to_sksltype()