Home
last modified time | relevance | path

Searched refs:kFloat2x2 (Results 1 – 5 of 5) sorted by relevance

/external/skia/tools/viewer/
DSkSLSlide.cpp186 case SkRuntimeEffect::Uniform::Type::kFloat2x2: in draw()
189 int rows = ((int)v.type - (int)SkRuntimeEffect::Uniform::Type::kFloat2x2) + 2; in draw()
/external/skia/include/effects/
DSkRuntimeEffect.h51 kFloat2x2, enumerator
/external/skia/src/gpu/effects/
DGrSkSLFP.cpp165 case Type::kFloat2x2: pdman.setMatrix2fv(handle, v.count, floatData()); break; in onSetData()
/external/skia/src/core/
DSkRuntimeEffect.cpp106 if (*type == *ctx.fTypes.fFloat2x2) { v->type = Type::kFloat2x2; return true; } in init_uniform_type()
107 if (*type == *ctx.fTypes.fHalf2x2) { v->type = Type::kFloat2x2; return true; } in init_uniform_type()
350 case Type::kFloat2x2: return sizeof(float) * 4; in sizeInBytes()
/external/skia/modules/canvaskit/
Dcanvaskit_bindings.cpp638 case Type::kFloat2x2: su.columns = 2; su.rows *= 2; break; in fromUniform()