Home
last modified time | relevance | path

Searched refs:fVec2_Type (Results 1 – 9 of 9) sorted by relevance

/external/skia/tests/
DSkSLMemoryLayoutTest.cpp21 REPORTER_ASSERT(r, 8 == layout.size(*context.fVec2_Type)); in DEF_TEST()
38 REPORTER_ASSERT(r, 8 == layout.alignment(*context.fVec2_Type)); in DEF_TEST()
102 REPORTER_ASSERT(r, 8 == layout.size(*context.fVec2_Type)); in DEF_TEST()
119 REPORTER_ASSERT(r, 8 == layout.alignment(*context.fVec2_Type)); in DEF_TEST()
/external/skia/src/sksl/
DSkSLContext.h29 , fVec2_Type(new Type(String("vec2"), *fFloat_Type, 2))
119 , fGenType_Type(new Type(String("$genType"), { fFloat_Type.get(), fVec2_Type.get(),
138 , fVec_Type(new Type(String("$vec"), { fInvalid_Type.get(), fVec2_Type.get(),
170 const std::unique_ptr<Type> fVec2_Type; variable
DSkSLCPPCodeGenerator.cpp146 } else if (type == *fContext.fVec2_Type) { in writeRuntimeValue()
339 } else if (var.fType == *fContext.fVec2_Type) { in addUniform()
533 } else if (param->fType == *fContext.fVec2_Type) { in writeGetKey()
DSkSLGLSLCodeGenerator.cpp199 ASSERT(c.fArguments[1]->fType == *fContext.fVec2_Type); in writeFunctionCall()
205 if (c.fArguments[1]->fType == *fContext.fVec2_Type) { in writeFunctionCall()
DSkSLSPIRVCodeGenerator.cpp1317 Constructor ctor(Position(), *fContext.fVec2_Type, std::move(args)); in writeSpecialIntrinsic()
1360 if (c.fArguments[1]->fType == *fContext.fVec2_Type) { in writeSpecialIntrinsic()
1370 ASSERT(c.fArguments[1]->fType == *fContext.fVec2_Type); in writeSpecialIntrinsic()
DSkSLIRGenerator.cpp1310 if (type == *fContext.fVec2_Type) { in fixRectSampling()
/external/skia/src/sksl/ir/
DSkSLIndexExpression.h24 case 2: return *context.fVec2_Type; in index_type()
DSkSLSwizzle.h31 case 2: return *context.fVec2_Type; in get_type()
DSkSLType.cpp49 case 2: return *context.fVec2_Type; in toCompound()