Home
last modified time | relevance | path

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

/third_party/skia/src/sksl/
DSkSLBuiltinTypes.cpp69 , fFloat4x4(Type::MakeMatrixType("float4x4", "f44", *fFloat, /*columns=*/4, /*rows=*/4)) in BuiltinTypes()
150 fFloat4x2.get(), fFloat4x3.get(), fFloat4x4.get()}))
156 fFloat3x3.get(), fFloat4x4.get()}))
DSkSLUtil.cpp58 if (type == *context.fTypes.fFloat4x4) { *outType = kFloat4x4_GrSLType; return true; } in type_to_grsltype()
DSkSLBuiltinTypes.h73 const std::unique_ptr<Type> fFloat4x4; variable
DSkSLThreadContext.cpp93 symbols.addAlias("mat4x4", context.fTypes.fFloat4x4.get()); in setupSymbolTable()
DSkSLCompiler.cpp266 symbols->addAlias("mat4", types.fFloat4x4.get()); in add_glsl_type_aliases()
/third_party/skia/tests/
DSkSLMemoryLayoutTest.cpp39 REPORTER_ASSERT(r, 64 == layout.size(*context.fTypes.fFloat4x4)); in DEF_TEST()
56 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat4x4)); in DEF_TEST()
127 REPORTER_ASSERT(r, 64 == layout.size(*context.fTypes.fFloat4x4)); in DEF_TEST()
144 REPORTER_ASSERT(r, 16 == layout.alignment(*context.fTypes.fFloat4x4)); in DEF_TEST()
/third_party/skia/src/sksl/dsl/
DDSLType.cpp125 return context.fTypes.fFloat4x4.get(); in get_type_from_type_constant()
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp288 else if (type == *fContext.fTypes.fFloat4x4 || type == *fContext.fTypes.fHalf4x4) { in writeDeterminantHack()
358 else if (type == *fContext.fTypes.fFloat4x4 || type == *fContext.fTypes.fHalf4x4) { in writeInverseHack()
/third_party/skia/src/sksl/ir/
DSkSLType.cpp616 case 4: return *context.fTypes.fFloat4x4; in toCompound()
/third_party/skia/src/core/
DSkRuntimeEffect.cpp123 if (*type == *ctx.fTypes.fFloat4x4) { v->type = Type::kFloat4x4; return true; } in init_uniform_type()