Searched refs:fShort (Results 1 – 9 of 9) sorted by relevance
/external/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 108 , fShort(MakeScalarType("short", "s", Type::NumberKind::kSigned, /*priority=*/4)) in BuiltinTypes() 109 , fShort2(MakeVectorType("short2", "s2", *fShort, /*columns=*/2)) in BuiltinTypes() 110 , fShort3(MakeVectorType("short3", "s3", *fShort, /*columns=*/3)) in BuiltinTypes() 111 , fShort4(MakeVectorType("short4", "s4", *fShort, /*columns=*/4)) in BuiltinTypes()
|
D | SkSLUtil.cpp | 46 if (type == *context.fTypes.fShort ) { *outType = kShort_GrSLType; return true; } in type_to_grsltype()
|
D | SkSLBuiltinTypes.h | 44 const std::unique_ptr<Type> fShort; variable
|
/external/skia/src/sksl/ir/ |
D | SkSLType.cpp | 139 } else if (*this == *context.fTypes.fShort) { in toCompound() 143 case 1: return *context.fTypes.fShort; in toCompound()
|
/external/skia/src/sksl/dsl/ |
D | DSLType.cpp | 141 return *context.fTypes.fShort; in skslType()
|
/external/skia/src/sksl/codegen/ |
D | SkSLHCodeGenerator.cpp | 56 type == *context.fTypes.fShort) { in ParameterCType()
|
D | SkSLGLSLCodeGenerator.cpp | 141 else if (type == *fContext.fTypes.fShort) { in getTypeName() 1112 if (type == *fContext.fTypes.fShort || type == *fContext.fTypes.fUShort) { in getTypePrecision()
|
D | SkSLCPPCodeGenerator.cpp | 456 if (type == *context.fTypes.fShort ) { return "kShort_GrSLType"; } in glsltype_string()
|
D | SkSLSPIRVCodeGenerator.cpp | 493 if (type.componentType() == *fContext.fTypes.fShort) { in getActualType() 529 } else if (type == *fContext.fTypes.fInt || type == *fContext.fTypes.fShort || in getType()
|