| 719 | } |
| 720 | |
| 721 | static int lpaint_setTextSize(lua_State* L) { |
| 722 | get_obj<SkPaint>(L, 1)->setTextSize(lua2scalar(L, 2)); |
| 723 | return 0; |
| 724 | } |
| 725 | |
| 726 | static int lpaint_getTypeface(lua_State* L) { |
| 727 | push_ref(L, get_obj<SkPaint>(L, 1)->getTypeface()); |
nothing calls this directly
no test coverage detected