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

Function lpath_moveTo

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

Source from the content-addressed store, hash-verified

1230}
1231
1232static int lpath_moveTo(lua_State* L) {
1233 get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3));
1234 return 0;
1235}
1236
1237static int lpath_lineTo(lua_State* L) {
1238 get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3));

Callers

nothing calls this directly

Calls 2

lua2scalarFunction · 0.85
moveToMethod · 0.45

Tested by

no test coverage detected