Home
last modified time | relevance | path

Searched refs:fShort (Results 1 – 8 of 8) sorted by relevance

/external/skia/tests/
DSkSLTypeTest.cpp24 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()
DSkSLMemoryLayoutTest.cpp746 REPORTER_ASSERT(r, !layout.isSupported(*context.fTypes.fShort)); in DEF_TEST()
/external/skia/src/sksl/
DSkSLBuiltinTypes.cpp39 , 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()
DSkSLUtil.cpp55 if (type.matches(*context.fTypes.fShort )) { *outType = SkSLType::kShort; return true; } in type_to_sksltype()
DSkSLBuiltinTypes.h44 const std::unique_ptr<Type> fShort; variable
/external/skia/src/sksl/ir/
DSkSLType.cpp815 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/
DDSLType.cpp154 return context.fTypes.fShort.get(); in get_type_from_type_constant()
/external/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp177 else if (type.matches(*fContext.fTypes.fShort)) { in getTypeName()
1282 if (type.matches(*fContext.fTypes.fShort) || in getTypePrecision()