Searched refs:fUInt_Type (Results 1 – 7 of 7) sorted by relevance
/external/skia/src/sksl/ |
D | SkSLContext.h | 32 , fUInt_Type(new Type(SkString("uint"), true, { fFloat_Type.get(), fDouble_Type.get() })) 33 , fUVec2_Type(new Type(SkString("uvec2"), *fUInt_Type, 2)) 34 , fUVec3_Type(new Type(SkString("uvec3"), *fUInt_Type, 3)) 35 , fUVec4_Type(new Type(SkString("uvec4"), *fUInt_Type, 4)) 36 , fInt_Type(new Type(SkString("int"), true, { fUInt_Type.get(), fFloat_Type.get(), 125 , fGenUType_Type(new Type(SkString("$genUType"), { fUInt_Type.get(), fUVec2_Type.get(), 172 const std::unique_ptr<Type> fUInt_Type; variable
|
D | SkSLIRGenerator.cpp | 386 if (value->fType != *fContext.fUInt_Type) { in convertSwitch() 402 if (caseValue->fType != *fContext.fUInt_Type) { in convertSwitch() 1241 type == *fContext.fUInt_Type)) { in convertNumberConstructor() 1457 if (converted->fType != *fContext.fUInt_Type) { in convertIndex()
|
D | SkSLSPIRVCodeGenerator.cpp | 168 return type == *context.fUInt_Type; in is_unsigned() 1050 } else if (type == *fContext.fUInt_Type) { in getType() 1476 } else if (c.fArguments[0]->fType == *fContext.fUInt_Type) { in writeFloatConstructor() 1494 } else if (c.fArguments[0]->fType == *fContext.fUInt_Type) { in writeIntConstructor() 2389 ASSERT(i.fType == *fContext.fUInt_Type); in writeIntLiteral()
|
D | SkSLGLSLCodeGenerator.cpp | 472 if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
|
/external/skia/src/sksl/ir/ |
D | SkSLIndexExpression.h | 51 ASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type); in IndexExpression()
|
D | SkSLSwizzle.h | 45 } else if (base == *context.fUInt_Type) { in get_type()
|
D | SkSLType.cpp | 120 } else if (*this == *context.fUInt_Type) { in toCompound()
|