Searched refs:fShort (Results 1 – 8 of 8) sorted by relevance
/external/skia/tests/ |
D | SkSLTypeTest.cpp | 24 REPORTER_ASSERT(r, types.fShort->minimumValue() == short_limits::lowest()); in DEF_TEST() 25 REPORTER_ASSERT(r, types.fShort->maximumValue() == short_limits::max()); in DEF_TEST()
|
D | SkSLMemoryLayoutTest.cpp | 746 REPORTER_ASSERT(r, !layout.isSupported(*context.fTypes.fShort)); in DEF_TEST()
|
/external/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 39 , fShort(Type::MakeScalarType( in BuiltinTypes() 41 , fShort2(Type::MakeVectorType("short2", "s2", *fShort, /*columns=*/2)) in BuiltinTypes() 42 , fShort3(Type::MakeVectorType("short3", "s3", *fShort, /*columns=*/3)) in BuiltinTypes() 43 , fShort4(Type::MakeVectorType("short4", "s4", *fShort, /*columns=*/4)) in BuiltinTypes()
|
D | SkSLUtil.cpp | 55 if (type.matches(*context.fTypes.fShort )) { *outType = SkSLType::kShort; return true; } in type_to_sksltype()
|
D | SkSLBuiltinTypes.h | 44 const std::unique_ptr<Type> fShort; variable
|
/external/skia/src/sksl/ir/ |
D | SkSLType.cpp | 815 mediumpType = context.fTypes.fShort.get(); in applyPrecisionQualifiers() 958 } else if (this->matches(*context.fTypes.fShort)) { in toCompound() 962 case 1: return *context.fTypes.fShort; in toCompound()
|
/external/skia/src/sksl/dsl/ |
D | DSLType.cpp | 154 return context.fTypes.fShort.get(); in get_type_from_type_constant()
|
/external/skia/src/sksl/codegen/ |
D | SkSLGLSLCodeGenerator.cpp | 177 else if (type.matches(*fContext.fTypes.fShort)) { in getTypeName() 1282 if (type.matches(*fContext.fTypes.fShort) || in getTypePrecision()
|