Home
last modified time | relevance | path

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

/third_party/skia/src/sksl/
DSkSLBuiltinTypes.cpp34 , fInt3(Type::MakeVectorType("int3", "i3", *fInt, /*columns=*/3)) in BuiltinTypes()
142 , fGenIType(Type::MakeGenericType("$genIType", {fInt.get(), fInt2.get(), fInt3.get(),
163 , fIVec(Type::MakeGenericType("$ivec", {fInvalid.get(), fInt2.get(), fInt3.get(),
DSkSLUtil.cpp68 if (type == *context.fTypes.fInt3 ) { *outType = kInt3_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h36 const std::unique_ptr<Type> fInt3; variable
DSkSLCompiler.cpp257 symbols->addAlias("ivec3", types.fInt3.get()); in add_glsl_type_aliases()
/third_party/skia/tests/
DSkSLMemoryLayoutTest.cpp29 REPORTER_ASSERT(r, 12 == layout.size(*context.fTypes.fInt3)); in DEF_TEST()
46 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fInt3)); in DEF_TEST()
117 REPORTER_ASSERT(r, 12 == layout.size(*context.fTypes.fInt3)); in DEF_TEST()
134 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fInt3)); in DEF_TEST()
/third_party/skia/src/sksl/dsl/
DDSLType.cpp131 return context.fTypes.fInt3.get(); in get_type_from_type_constant()
/third_party/skia/src/sksl/ir/
DSkSLType.cpp660 case 3: return *context.fTypes.fInt3; in toCompound()
/third_party/skia/src/core/
DSkRuntimeEffect.cpp128 if (*type == *ctx.fTypes.fInt3) { v->type = Type::kInt3; return true; } in init_uniform_type()