mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
Reorganize wlr-common
This commit is contained in:
parent
fd91244e83
commit
f4453d104d
46 changed files with 71 additions and 91 deletions
|
|
@ -14,6 +14,6 @@ add_library(wlr-types
|
|||
)
|
||||
|
||||
target_link_libraries(wlr-types
|
||||
wlr-common
|
||||
wlr-util
|
||||
${WAYLAND_LIBRARIES}
|
||||
)
|
||||
|
|
|
|||
|
|
@ -9,8 +9,7 @@
|
|||
#include <wlr/interfaces/wlr_touch.h>
|
||||
#include <wlr/interfaces/wlr_tablet_tool.h>
|
||||
#include <wlr/interfaces/wlr_tablet_pad.h>
|
||||
#include <wlr/common/list.h>
|
||||
#include "common/log.h"
|
||||
#include <wlr/util/log.h>
|
||||
|
||||
struct wlr_input_device *wlr_input_device_create(
|
||||
enum wlr_input_device_type type,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_keyboard.h>
|
||||
#include <wlr/interfaces/wlr_keyboard.h>
|
||||
#include <wlr/common/list.h>
|
||||
|
||||
struct wlr_keyboard *wlr_keyboard_create(struct wlr_keyboard_impl *impl,
|
||||
struct wlr_keyboard_state *state) {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_output.h>
|
||||
#include <wlr/interfaces/wlr_output.h>
|
||||
#include <wlr/common/list.h>
|
||||
#include <wlr/util/list.h>
|
||||
|
||||
static const float transforms[][4] = {
|
||||
[WL_OUTPUT_TRANSFORM_NORMAL] = {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_pointer.h>
|
||||
#include <wlr/interfaces/wlr_pointer.h>
|
||||
#include <wlr/common/list.h>
|
||||
|
||||
struct wlr_pointer *wlr_pointer_create(struct wlr_pointer_impl *impl,
|
||||
struct wlr_pointer_state *state) {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_tablet_pad.h>
|
||||
#include <wlr/interfaces/wlr_tablet_pad.h>
|
||||
#include <wlr/common/list.h>
|
||||
|
||||
struct wlr_tablet_pad *wlr_tablet_pad_create(struct wlr_tablet_pad_impl *impl,
|
||||
struct wlr_tablet_pad_state *state) {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_tablet_tool.h>
|
||||
#include <wlr/interfaces/wlr_tablet_tool.h>
|
||||
#include <wlr/common/list.h>
|
||||
|
||||
struct wlr_tablet_tool *wlr_tablet_tool_create(struct wlr_tablet_tool_impl *impl,
|
||||
struct wlr_tablet_tool_state *state) {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_touch.h>
|
||||
#include <wlr/interfaces/wlr_touch.h>
|
||||
#include <wlr/common/list.h>
|
||||
|
||||
struct wlr_touch *wlr_touch_create(struct wlr_touch_impl *impl,
|
||||
struct wlr_touch_state *state) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue