Home
last modified time | relevance | path

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

/external/skia/tests/
DSkSLMemoryLayoutTest.cpp23 REPORTER_ASSERT(r, 16 == layout.size(*context.fVec4_Type)); in DEF_TEST()
40 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fVec4_Type)); in DEF_TEST()
90 SkSL::Type array2(SkString("vec4[4]"), SkSL::Type::kArray_Kind, *context.fVec4_Type, 4); in DEF_TEST()
104 REPORTER_ASSERT(r, 16 == layout.size(*context.fVec4_Type)); in DEF_TEST()
121 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fVec4_Type)); in DEF_TEST()
171 SkSL::Type array2(SkString("vec4[4]"), SkSL::Type::kArray_Kind, *context.fVec4_Type, 4); in DEF_TEST()
/external/skia/src/sksl/
DSkSLContext.h31 , fVec4_Type(new Type(SkString("vec4"), *fFloat_Type, 4))
120 fVec3_Type.get(), fVec4_Type.get() }))
139 fVec3_Type.get(), fVec4_Type.get() }))
143 , fGVec4_Type(new Type(SkString("$gvec4"), static_type(*fVec4_Type)))
170 const std::unique_ptr<Type> fVec4_Type; variable
DSkSLGLSLCodeGenerator.cpp215 ASSERT(c.fArguments[1]->fType == *fContext.fVec4_Type); in writeFunctionCall()
DSkSLSPIRVCodeGenerator.cpp1319 if (c.fArguments[1]->fType == *fContext.fVec4_Type) { in writeSpecialIntrinsic()
1912 this->writeWord(this->getType(*fContext.fVec4_Type), out); in writeVariableReference()
/external/skia/src/sksl/ir/
DSkSLIndexExpression.h26 case 4: return *context.fVec4_Type; in index_type()
DSkSLSwizzle.h31 case 4: return *context.fVec4_Type; in get_type()
DSkSLType.cpp51 case 4: return *context.fVec4_Type; in toCompound()