Home
last modified time | relevance | path

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

/external/skia/src/sksl/
DSkSLBuiltinTypes.cpp101 , fInt3(MakeVectorType("int3", "i3", *fInt, /*columns=*/3)) in BuiltinTypes()
212 MakeGenericType("$genIType", {fInt.get(), fInt2.get(), fInt3.get(), fInt4.get()}))
233 , fIVec(MakeGenericType("$ivec", {fInvalid.get(), fInt2.get(), fInt3.get(), fInt4.get()}))
DSkSLUtil.cpp70 if (type == *context.fTypes.fInt3 ) { *outType = kInt3_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h36 const std::unique_ptr<Type> fInt3; variable
DSkSLCompiler.cpp266 symbols->addAlias("ivec3", types.fInt3.get()); in add_glsl_type_aliases()
/external/skia/tests/
DSkSLMemoryLayoutTest.cpp27 REPORTER_ASSERT(r, 12 == layout.size(*context.fTypes.fInt3)); in DEF_TEST()
44 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fInt3)); in DEF_TEST()
114 REPORTER_ASSERT(r, 12 == layout.size(*context.fTypes.fInt3)); in DEF_TEST()
131 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fInt3)); in DEF_TEST()
/external/skia/src/sksl/dsl/
DDSLType.cpp135 return *context.fTypes.fInt3; in skslType()
/external/skia/src/sksl/ir/
DSkSLType.cpp133 case 3: return *context.fTypes.fInt3; in toCompound()
/external/skia/src/core/
DSkRuntimeEffect.cpp115 if (*type == *ctx.fTypes.fInt3) { v->type = Type::kInt3; return true; } in init_uniform_type()
/external/skia/src/sksl/codegen/
DSkSLCPPCodeGenerator.cpp480 if (type == *context.fTypes.fInt3 ) { return "kInt3_GrSLType"; } in glsltype_string()