Home
last modified time | relevance | path

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

/external/skia/tests/
DSkSLMemoryLayoutTest.cpp22 REPORTER_ASSERT(r, 12 == layout.size(*context.fVec3_Type)); in DEF_TEST()
39 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fVec3_Type)); in DEF_TEST()
57 fields1.emplace_back(SkSL::Modifiers(), SkString("a"), context.fVec3_Type.get()); in DEF_TEST()
79 fields2.emplace_back(SkSL::Modifiers(), SkString("b"), context.fVec3_Type.get()); in DEF_TEST()
103 REPORTER_ASSERT(r, 12 == layout.size(*context.fVec3_Type)); in DEF_TEST()
120 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fVec3_Type)); in DEF_TEST()
138 fields1.emplace_back(SkSL::Modifiers(), SkString("a"), context.fVec3_Type.get()); in DEF_TEST()
160 fields2.emplace_back(SkSL::Modifiers(), SkString("b"), context.fVec3_Type.get()); in DEF_TEST()
/external/skia/src/sksl/
DSkSLContext.h30 , fVec3_Type(new Type(String("vec3"), *fFloat_Type, 3))
120 fVec3_Type.get(), fVec4_Type.get() }))
139 fVec3_Type.get(), fVec4_Type.get() }))
171 const std::unique_ptr<Type> fVec3_Type; variable
DSkSLGLSLCodeGenerator.cpp208 ASSERT(c.fArguments[1]->fType == *fContext.fVec3_Type); in writeFunctionCall()
214 if (c.fArguments[1]->fType == *fContext.fVec3_Type) { in writeFunctionCall()
DSkSLIRGenerator.cpp1313 ASSERT(type == *fContext.fVec3_Type); in fixRectSampling()
1317 scale.reset(new Constructor(Position(), *fContext.fVec3_Type, std::move(vec3Arguments))); in fixRectSampling()
DSkSLSPIRVCodeGenerator.cpp1367 if (c.fArguments[1]->fType == *fContext.fVec3_Type) { in writeSpecialIntrinsic()
1377 ASSERT(c.fArguments[1]->fType == *fContext.fVec3_Type); in writeSpecialIntrinsic()
/external/skia/src/sksl/ir/
DSkSLIndexExpression.h25 case 3: return *context.fVec3_Type; in index_type()
DSkSLSwizzle.h32 case 3: return *context.fVec3_Type; in get_type()
DSkSLType.cpp50 case 3: return *context.fVec3_Type; in toCompound()