| 1230 | } |
| 1231 | |
| 1232 | static int lpath_moveTo(lua_State* L) { |
| 1233 | get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3)); |
| 1234 | return 0; |
| 1235 | } |
| 1236 | |
| 1237 | static int lpath_lineTo(lua_State* L) { |
| 1238 | get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3)); |
nothing calls this directly
no test coverage detected