| 1240 | } |
| 1241 | |
| 1242 | static 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 | |
| 1248 | static int lpath_cubicTo(lua_State* L) { |
| 1249 | get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3), |
nothing calls this directly
no test coverage detected