Searched refs:fUShort (Results 1 – 9 of 9) sorted by relevance
/external/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 112 , fUShort(MakeScalarType("ushort", "S", Type::NumberKind::kUnsigned, /*priority=*/3)) in BuiltinTypes() 113 , fUShort2(MakeVectorType("ushort2", "S2", *fUShort, /*columns=*/2)) in BuiltinTypes() 114 , fUShort3(MakeVectorType("ushort3", "S3", *fUShort, /*columns=*/3)) in BuiltinTypes() 115 , fUShort4(MakeVectorType("ushort4", "S4", *fUShort, /*columns=*/4)) in BuiltinTypes()
|
D | SkSLUtil.cpp | 50 if (type == *context.fTypes.fUShort ) { *outType = kUShort_GrSLType; return true; } in type_to_grsltype()
|
D | SkSLBuiltinTypes.h | 49 const std::unique_ptr<Type> fUShort; variable
|
/external/skia/src/sksl/ir/ |
D | SkSLType.cpp | 163 } else if (*this == *context.fTypes.fUShort) { in toCompound() 167 case 1: return *context.fTypes.fUShort; in toCompound()
|
/external/skia/src/sksl/dsl/ |
D | DSLType.cpp | 157 return *context.fTypes.fUShort; in skslType()
|
/external/skia/src/sksl/codegen/ |
D | SkSLGLSLCodeGenerator.cpp | 144 else if (type == *fContext.fTypes.fUShort) { in getTypeName() 950 } else if (type == *fContext.fTypes.fUShort) { in writeIntLiteral() 1112 if (type == *fContext.fTypes.fShort || type == *fContext.fTypes.fUShort) { in getTypePrecision()
|
D | SkSLCPPCodeGenerator.cpp | 460 if (type == *context.fTypes.fUShort ) { return "kUShort_GrSLType"; } in glsltype_string()
|
D | SkSLMetalCodeGenerator.cpp | 1447 } else if (type == *fContext.fTypes.fUShort) { in writeIntLiteral()
|
D | SkSLSPIRVCodeGenerator.cpp | 496 if (type.componentType() == *fContext.fTypes.fUShort) { in getActualType() 532 } else if (type == *fContext.fTypes.fUInt || type == *fContext.fTypes.fUShort) { in getType()
|