Home
last modified time | relevance | path

Searched refs:fUInt_Type (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/sksl/
DSkSLContext.h32 , 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
DSkSLIRGenerator.cpp386 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()
DSkSLSPIRVCodeGenerator.cpp168 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()
DSkSLGLSLCodeGenerator.cpp472 if (i.fType == *fContext.fUInt_Type) { in writeIntLiteral()
/external/skia/src/sksl/ir/
DSkSLIndexExpression.h51 ASSERT(fIndex->fType == *context.fInt_Type || fIndex->fType == *context.fUInt_Type); in IndexExpression()
DSkSLSwizzle.h45 } else if (base == *context.fUInt_Type) { in get_type()
DSkSLType.cpp120 } else if (*this == *context.fUInt_Type) { in toCompound()