Reorganize wlr-common

This commit is contained in:
Drew DeVault 2017-06-21 12:10:07 -04:00
parent fd91244e83
commit f4453d104d
46 changed files with 71 additions and 91 deletions

View file

@ -14,6 +14,6 @@ add_library(wlr-types
)
target_link_libraries(wlr-types
wlr-common
wlr-util
${WAYLAND_LIBRARIES}
)

View file

@ -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,

View file

@ -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) {

View file

@ -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] = {

View file

@ -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) {

View file

@ -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) {

View file

@ -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) {

View file

@ -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) {