Home
last modified time | relevance | path

Searched refs:fFloat2x2 (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/src/sksl/
DSkSLBuiltinTypes.cpp61 , fFloat2x2(Type::MakeMatrixType("float2x2", "f22", *fFloat, /*columns=*/2, /*rows=*/2)) in BuiltinTypes()
148 , fMat(Type::MakeGenericType("$mat", {fFloat2x2.get(), fFloat2x3.get(), fFloat2x4.get(),
155 , fSquareMat(Type::MakeGenericType("$squareMat", {fInvalid.get(), fFloat2x2.get(),
DSkSLUtil.cpp56 if (type == *context.fTypes.fFloat2x2) { *outType = kFloat2x2_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h65 const std::unique_ptr<Type> fFloat2x2; variable
DSkSLThreadContext.cpp85 symbols.addAlias("mat2x2", context.fTypes.fFloat2x2.get()); in setupSymbolTable()
DSkSLCompiler.cpp264 symbols->addAlias("mat2", types.fFloat2x2.get()); in add_glsl_type_aliases()
/third_party/skia/tests/
DSkSLMemoryLayoutTest.cpp35 REPORTER_ASSERT(r, 32 == layout.size(*context.fTypes.fFloat2x2)); in DEF_TEST()
52 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat2x2)); in DEF_TEST()
123 REPORTER_ASSERT(r, 16 == layout.size(*context.fTypes.fFloat2x2)); in DEF_TEST()
140 REPORTER_ASSERT(r, 8 == layout.alignment(*context.fTypes.fFloat2x2)); in DEF_TEST()
/third_party/skia/src/sksl/dsl/
DDSLType.cpp109 return context.fTypes.fFloat2x2.get(); in get_type_from_type_constant()
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp260 if (type == *fContext.fTypes.fFloat2x2 || type == *fContext.fTypes.fHalf2x2) { in writeDeterminantHack()
326 if (type == *fContext.fTypes.fFloat2x2 || type == *fContext.fTypes.fHalf2x2) { in writeInverseHack()
/third_party/skia/src/sksl/ir/
DSkSLType.cpp600 case 2: return *context.fTypes.fFloat2x2; in toCompound()
/third_party/skia/src/core/
DSkRuntimeEffect.cpp119 if (*type == *ctx.fTypes.fFloat2x2) { v->type = Type::kFloat2x2; return true; } in init_uniform_type()