| 75 | }; |
| 76 | |
| 77 | static void init_wlr_tool(wlr_tablet_tool *tablet_tool) |
| 78 | { |
| 79 | std::memset(tablet_tool, 0, sizeof(*tablet_tool)); |
| 80 | tablet_tool->type = WLR_TABLET_TOOL_TYPE_PEN; |
| 81 | tablet_tool->pressure = true; |
| 82 | wl_signal_init(&tablet_tool->events.destroy); |
| 83 | } |
| 84 | |
| 85 | class headless_input_backend_t |
| 86 | { |
no outgoing calls
no test coverage detected