Home
last modified time | relevance | path

Searched refs:isAllowedInES2 (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/src/sksl/ir/
DSkSLType.cpp59 bool isAllowedInES2() const override { in isAllowedInES2() function in SkSL::ArrayType
60 return fComponentType.isAllowedInES2(); in isAllowedInES2()
181 bool isAllowedInES2() const override { in isAllowedInES2() function in SkSL::ScalarType
231 bool isAllowedInES2() const override { in isAllowedInES2() function in SkSL::MatrixType
350 bool isAllowedInES2() const override { in isAllowedInES2() function in SkSL::StructType
352 return f.fType->isAllowedInES2(); in isAllowedInES2()
402 bool isAllowedInES2() const override { in isAllowedInES2() function in SkSL::VectorType
403 return fComponentType.isAllowedInES2(); in isAllowedInES2()
809 bool Type::isAllowedInES2(const Context& context) const { in isAllowedInES2() function in SkSL::Type
810 return !context.fConfig->strictES2Mode() || this->isAllowedInES2(); in isAllowedInES2()
DSkSLTypeReference.cpp18 if (!type->isAllowedInES2(context)) { in Convert()
28 SkASSERT(type->isAllowedInES2(context)); in Make()
DSkSLConstructorSplat.cpp18 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorDiagonalMatrix.cpp21 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorMatrixResize.cpp20 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLType.h195 bool isAllowedInES2(const Context& context) const;
198 virtual bool isAllowedInES2() const { in isAllowedInES2() function
DSkSLConstructorArrayCast.cpp47 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorScalarCast.cpp61 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorStruct.cpp64 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorArray.cpp68 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorCompound.cpp21 SkASSERT(type.isAllowedInES2(context)); in Make()
DSkSLConstructorCompoundCast.cpp74 SkASSERT(type.isAllowedInES2(context)); in Make()
/third_party/skia/src/sksl/dsl/
DDSLType.cpp27 if (!type->isAllowedInES2(context)) { in verify_type()