| 1235 | } |
| 1236 | |
| 1237 | static int lpath_lineTo(lua_State* L) { |
| 1238 | get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3)); |
| 1239 | return 0; |
| 1240 | } |
| 1241 | |
| 1242 | static int lpath_quadTo(lua_State* L) { |
| 1243 | get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3), |
nothing calls this directly
no test coverage detected