| 596 | /////////////////////////////////////////////////////////////////////////////// |
| 597 | |
| 598 | static int ldocument_beginPage(lua_State* L) { |
| 599 | const SkRect* contentPtr = NULL; |
| 600 | push_ref(L, get_ref<SkDocument>(L, 1)->beginPage(lua2scalar(L, 2), |
| 601 | lua2scalar(L, 3), |
| 602 | contentPtr)); |
| 603 | return 1; |
| 604 | } |
| 605 | |
| 606 | static int ldocument_endPage(lua_State* L) { |
| 607 | get_ref<SkDocument>(L, 1)->endPage(); |
nothing calls this directly
no test coverage detected