Home
last modified time | relevance | path

Searched refs:fVec4_Type (Results 1 – 8 of 8) 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(String("vec4"), *fFloat_Type, 4))
120 fVec3_Type.get(), fVec4_Type.get() }))
139 fVec3_Type.get(), fVec4_Type.get() }))
143 , fGVec4_Type(new Type(String("$gvec4"), static_type(*fVec4_Type)))
172 const std::unique_ptr<Type> fVec4_Type; variable
DSkSLCPPCodeGenerator.cpp341 } else if (var.fType == *fContext.fVec4_Type) { in addUniform()
443 if (u->fType == *fContext.fVec4_Type) { in writeSetData()
538 } else if (param->fType == *fContext.fVec4_Type) { in writeGetKey()
DSkSLGLSLCodeGenerator.cpp217 ASSERT(c.fArguments[1]->fType == *fContext.fVec4_Type); in writeFunctionCall()
DSkSLSPIRVCodeGenerator.cpp1374 if (c.fArguments[1]->fType == *fContext.fVec4_Type) { in writeSpecialIntrinsic()
1969 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.h33 case 4: return *context.fVec4_Type; in get_type()
DSkSLType.cpp51 case 4: return *context.fVec4_Type; in toCompound()