MCPcopy Create free account
hub / github.com/SOUI2/soui / lpath_quadTo

Function lpath_quadTo

third-part/skia/src/utils/SkLua.cpp:1242–1246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1240}
1241
1242static int lpath_quadTo(lua_State* L) {
1243 get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3),
1244 lua2scalar(L, 4), lua2scalar(L, 5));
1245 return 0;
1246}
1247
1248static int lpath_cubicTo(lua_State* L) {
1249 get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3),

Callers

nothing calls this directly

Calls 2

lua2scalarFunction · 0.85
quadToMethod · 0.45

Tested by

no test coverage detected