Reorganize wlr-common
This commit is contained in:
parent
fd91244e83
commit
f4453d104d
|
@ -58,9 +58,9 @@ include(Manpage)
|
||||||
include_directories(include)
|
include_directories(include)
|
||||||
|
|
||||||
add_subdirectory(backend)
|
add_subdirectory(backend)
|
||||||
add_subdirectory(common)
|
|
||||||
add_subdirectory(types)
|
add_subdirectory(types)
|
||||||
add_subdirectory(session)
|
add_subdirectory(session)
|
||||||
add_subdirectory(render)
|
add_subdirectory(render)
|
||||||
|
add_subdirectory(util)
|
||||||
|
|
||||||
add_subdirectory(example)
|
add_subdirectory(example)
|
||||||
|
|
|
@ -28,7 +28,7 @@ add_library(wlr-backend
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(wlr-backend
|
target_link_libraries(wlr-backend
|
||||||
wlr-common
|
wlr-util
|
||||||
wlr-types
|
wlr-types
|
||||||
${WAYLAND_LIBRARIES}
|
${WAYLAND_LIBRARIES}
|
||||||
${DRM_LIBRARIES}
|
${DRM_LIBRARIES}
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
#include <wlr/backend/libinput.h>
|
#include <wlr/backend/libinput.h>
|
||||||
#include <wlr/backend/wayland.h>
|
#include <wlr/backend/wayland.h>
|
||||||
#include <wlr/backend/multi.h>
|
#include <wlr/backend/multi.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "backend/udev.h"
|
#include "backend/udev.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_backend *wlr_backend_create(const struct wlr_backend_impl *impl,
|
struct wlr_backend *wlr_backend_create(const struct wlr_backend_impl *impl,
|
||||||
struct wlr_backend_state *state) {
|
struct wlr_backend_state *state) {
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
#include <xf86drm.h>
|
#include <xf86drm.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/common/list.h>
|
|
||||||
#include <wlr/backend/interface.h>
|
#include <wlr/backend/interface.h>
|
||||||
#include <wlr/interfaces/wlr_output.h>
|
#include <wlr/interfaces/wlr_output.h>
|
||||||
|
#include <wlr/util/list.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/udev.h"
|
#include "backend/udev.h"
|
||||||
#include "backend/drm.h"
|
#include "backend/drm.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static bool wlr_drm_backend_init(struct wlr_backend_state *state) {
|
static bool wlr_drm_backend_init(struct wlr_backend_state *state) {
|
||||||
wlr_drm_scan_connectors(state);
|
wlr_drm_scan_connectors(state);
|
||||||
|
|
|
@ -14,8 +14,8 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/backend/interface.h>
|
#include <wlr/backend/interface.h>
|
||||||
#include <wlr/interfaces/wlr_output.h>
|
#include <wlr/interfaces/wlr_output.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/drm.h"
|
#include "backend/drm.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static const char *conn_name[] = {
|
static const char *conn_name[] = {
|
||||||
[DRM_MODE_CONNECTOR_Unknown] = "Unknown",
|
[DRM_MODE_CONNECTOR_Unknown] = "Unknown",
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
#include <EGL/eglext.h>
|
#include <EGL/eglext.h>
|
||||||
#include <GLES3/gl3.h>
|
#include <GLES3/gl3.h>
|
||||||
#include <gbm.h> // GBM_FORMAT_XRGB8888
|
#include <gbm.h> // GBM_FORMAT_XRGB8888
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/egl.h"
|
#include "backend/egl.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
const char *egl_error(void) {
|
const char *egl_error(void) {
|
||||||
switch (eglGetError()) {
|
switch (eglGetError()) {
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
#include <libinput.h>
|
#include <libinput.h>
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/backend/interface.h>
|
#include <wlr/backend/interface.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/udev.h"
|
#include "backend/udev.h"
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static int wlr_libinput_open_restricted(const char *path,
|
static int wlr_libinput_open_restricted(const char *path,
|
||||||
int flags, void *_state) {
|
int flags, void *_state) {
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <libinput.h>
|
#include <libinput.h>
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/common/list.h>
|
|
||||||
#include <wlr/interfaces/wlr_input_device.h>
|
#include <wlr/interfaces/wlr_input_device.h>
|
||||||
|
#include <wlr/util/list.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_input_device *get_appropriate_device(
|
struct wlr_input_device *get_appropriate_device(
|
||||||
enum wlr_input_device_type desired_type,
|
enum wlr_input_device_type desired_type,
|
||||||
|
|
|
@ -4,9 +4,8 @@
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/types/wlr_input_device.h>
|
#include <wlr/types/wlr_input_device.h>
|
||||||
#include <wlr/interfaces/wlr_keyboard.h>
|
#include <wlr/interfaces/wlr_keyboard.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_keyboard_state {
|
struct wlr_keyboard_state {
|
||||||
struct libinput_device *device;
|
struct libinput_device *device;
|
||||||
|
|
|
@ -4,9 +4,8 @@
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/types/wlr_input_device.h>
|
#include <wlr/types/wlr_input_device.h>
|
||||||
#include <wlr/interfaces/wlr_pointer.h>
|
#include <wlr/interfaces/wlr_pointer.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_pointer *wlr_libinput_pointer_create(
|
struct wlr_pointer *wlr_libinput_pointer_create(
|
||||||
struct libinput_device *device) {
|
struct libinput_device *device) {
|
||||||
|
|
|
@ -4,9 +4,8 @@
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/types/wlr_input_device.h>
|
#include <wlr/types/wlr_input_device.h>
|
||||||
#include <wlr/interfaces/wlr_tablet_pad.h>
|
#include <wlr/interfaces/wlr_tablet_pad.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_tablet_pad *wlr_libinput_tablet_pad_create(
|
struct wlr_tablet_pad *wlr_libinput_tablet_pad_create(
|
||||||
struct libinput_device *device) {
|
struct libinput_device *device) {
|
||||||
|
|
|
@ -4,9 +4,8 @@
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/types/wlr_input_device.h>
|
#include <wlr/types/wlr_input_device.h>
|
||||||
#include <wlr/interfaces/wlr_tablet_tool.h>
|
#include <wlr/interfaces/wlr_tablet_tool.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_tablet_tool *wlr_libinput_tablet_tool_create(
|
struct wlr_tablet_tool *wlr_libinput_tablet_tool_create(
|
||||||
struct libinput_device *device) {
|
struct libinput_device *device) {
|
||||||
|
|
|
@ -4,9 +4,8 @@
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/types/wlr_input_device.h>
|
#include <wlr/types/wlr_input_device.h>
|
||||||
#include <wlr/interfaces/wlr_touch.h>
|
#include <wlr/interfaces/wlr_touch.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/log.h>
|
||||||
#include "backend/libinput.h"
|
#include "backend/libinput.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_touch *wlr_libinput_touch_create(
|
struct wlr_touch *wlr_libinput_touch_create(
|
||||||
struct libinput_device *device) {
|
struct libinput_device *device) {
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <wlr/backend/interface.h>
|
#include <wlr/backend/interface.h>
|
||||||
#include <wlr/common/log.h>
|
#include <wlr/util/log.h>
|
||||||
#include "backend/multi.h"
|
#include "backend/multi.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct subbackend_state {
|
struct subbackend_state {
|
||||||
struct wlr_backend *backend;
|
struct wlr_backend *backend;
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
#include <xf86drmMode.h>
|
#include <xf86drmMode.h>
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/udev.h"
|
#include "backend/udev.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
/* Tests if 'path' is KMS compatible by trying to open it.
|
/* Tests if 'path' is KMS compatible by trying to open it.
|
||||||
* It leaves the open device in *fd_out it it succeeds.
|
* It leaves the open device in *fd_out it it succeeds.
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <wayland-server.h>
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <EGL/egl.h>
|
||||||
|
#include <EGL/eglext.h>
|
||||||
|
#include <wayland-server.h>
|
||||||
#include <wlr/backend/interface.h>
|
#include <wlr/backend/interface.h>
|
||||||
#include <wlr/interfaces/wlr_output.h>
|
#include <wlr/interfaces/wlr_output.h>
|
||||||
#include <wlr/interfaces/wlr_input_device.h>
|
#include <wlr/interfaces/wlr_input_device.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/wayland.h"
|
#include "backend/wayland.h"
|
||||||
#include "common/log.h"
|
|
||||||
#include <EGL/egl.h>
|
|
||||||
#include <EGL/eglext.h>
|
|
||||||
|
|
||||||
static int dispatch_events(int fd, uint32_t mask, void *data) {
|
static int dispatch_events(int fd, uint32_t mask, void *data) {
|
||||||
struct wlr_backend_state *state = data;
|
struct wlr_backend_state *state = data;
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
#include <GLES3/gl3.h>
|
#include <GLES3/gl3.h>
|
||||||
#include <wlr/interfaces/wlr_output.h>
|
#include <wlr/interfaces/wlr_output.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/wayland.h"
|
#include "backend/wayland.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static struct wl_callback_listener frame_listener;
|
static struct wl_callback_listener frame_listener;
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/wayland.h"
|
#include "backend/wayland.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static void registry_global(void *data, struct wl_registry *registry,
|
static void registry_global(void *data, struct wl_registry *registry,
|
||||||
uint32_t name, const char *interface, uint32_t version) {
|
uint32_t name, const char *interface, uint32_t version) {
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
#include <wlr/interfaces/wlr_input_device.h>
|
#include <wlr/interfaces/wlr_input_device.h>
|
||||||
#include <wlr/interfaces/wlr_pointer.h>
|
#include <wlr/interfaces/wlr_pointer.h>
|
||||||
#include <wlr/interfaces/wlr_keyboard.h>
|
#include <wlr/interfaces/wlr_keyboard.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
#include "backend/wayland.h"
|
#include "backend/wayland.h"
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static void wlr_wl_device_destroy(struct wlr_input_device_state *state) {
|
static void wlr_wl_device_destroy(struct wlr_input_device_state *state) {
|
||||||
free(state);
|
free(state);
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
add_library(wlr-common STATIC
|
|
||||||
list.c
|
|
||||||
log.c
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(wlr-common m)
|
|
|
@ -11,12 +11,12 @@
|
||||||
#include <wayland-server-protocol.h>
|
#include <wayland-server-protocol.h>
|
||||||
#include <xkbcommon/xkbcommon.h>
|
#include <xkbcommon/xkbcommon.h>
|
||||||
#include <GLES3/gl3.h>
|
#include <GLES3/gl3.h>
|
||||||
#include <wlr/common/list.h>
|
|
||||||
#include <wlr/render/matrix.h>
|
#include <wlr/render/matrix.h>
|
||||||
#include <wlr/render/gles3.h>
|
#include <wlr/render/gles3.h>
|
||||||
#include <wlr/render.h>
|
#include <wlr/render.h>
|
||||||
#include <wlr/backend.h>
|
#include <wlr/backend.h>
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
|
#include <wlr/util/list.h>
|
||||||
#include "shared.h"
|
#include "shared.h"
|
||||||
#include "cat.h"
|
#include "cat.h"
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
#include <gbm.h>
|
#include <gbm.h>
|
||||||
|
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/common/list.h>
|
|
||||||
#include <wlr/backend/drm.h>
|
#include <wlr/backend/drm.h>
|
||||||
|
#include <wlr/util/list.h>
|
||||||
|
|
||||||
#include "backend/egl.h"
|
#include "backend/egl.h"
|
||||||
#include "backend/udev.h"
|
#include "backend/udev.h"
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#ifndef _WLR_BACKEND_LIBINPUT_INTERNAL_H
|
#ifndef _WLR_BACKEND_LIBINPUT_INTERNAL_H
|
||||||
#define _WLR_BACKEND_LIBINPUT_INTERNAL_H
|
#define _WLR_BACKEND_LIBINPUT_INTERNAL_H
|
||||||
#include <libinput.h>
|
#include <libinput.h>
|
||||||
#include <wlr/backend/interface.h>
|
|
||||||
#include <wlr/common/list.h>
|
|
||||||
#include <wayland-server-core.h>
|
#include <wayland-server-core.h>
|
||||||
|
#include <wlr/backend/interface.h>
|
||||||
#include <wlr/interfaces/wlr_input_device.h>
|
#include <wlr/interfaces/wlr_input_device.h>
|
||||||
|
#include <wlr/util/list.h>
|
||||||
#include "backend/udev.h"
|
#include "backend/udev.h"
|
||||||
|
|
||||||
struct wlr_backend_state {
|
struct wlr_backend_state {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
#include <wlr/backend/interface.h>
|
#include <wlr/backend/interface.h>
|
||||||
#include <wlr/backend/multi.h>
|
#include <wlr/backend/multi.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/list.h>
|
||||||
|
|
||||||
struct wlr_backend_state {
|
struct wlr_backend_state {
|
||||||
struct wlr_backend *backend;
|
struct wlr_backend *backend;
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wayland-egl.h>
|
#include <wayland-egl.h>
|
||||||
#include <wlr/common/list.h>
|
|
||||||
#include <wlr/backend/wayland.h>
|
#include <wlr/backend/wayland.h>
|
||||||
#include <wlr/types/wlr_input_device.h>
|
#include <wlr/types/wlr_input_device.h>
|
||||||
|
#include <wlr/util/list.h>
|
||||||
#include "backend/egl.h"
|
#include "backend/egl.h"
|
||||||
|
|
||||||
struct wlr_backend_state {
|
struct wlr_backend_state {
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
#ifndef _WLR_COMMON_LOG_H
|
|
||||||
#define _WLR_COMMON_LOG_H
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdarg.h>
|
|
||||||
|
|
||||||
typedef enum {
|
|
||||||
L_SILENT = 0,
|
|
||||||
L_ERROR = 1,
|
|
||||||
L_INFO = 2,
|
|
||||||
L_DEBUG = 3,
|
|
||||||
L_LAST,
|
|
||||||
} log_importance_t;
|
|
||||||
|
|
||||||
typedef void (*log_callback_t)(log_importance_t importance, const char *fmt, va_list args);
|
|
||||||
|
|
||||||
void wlr_init_log(log_callback_t callback);
|
|
||||||
void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args);
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef _WLR_TYPES_OUTPUT_H
|
#ifndef _WLR_TYPES_OUTPUT_H
|
||||||
#define _WLR_TYPES_OUTPUT_H
|
#define _WLR_TYPES_OUTPUT_H
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/list.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
struct wlr_output_mode_state;
|
struct wlr_output_mode_state;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef _WLR_LIST_H
|
#ifndef _WLR_UTIL_LIST_H
|
||||||
#define _WLR_LIST_H
|
#define _WLR_UTIL_LIST_H
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
|
@ -1,9 +1,21 @@
|
||||||
#ifndef _WLR_INTERNAL_COMMON_LOG_H
|
#ifndef _WLR_UTIL_LOG_H
|
||||||
#define _WLR_INTERNAL_COMMON_LOG_H
|
#define _WLR_UTIL_LOG_H
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <stdarg.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <wlr/common/log.h>
|
|
||||||
|
typedef enum {
|
||||||
|
L_SILENT = 0,
|
||||||
|
L_ERROR = 1,
|
||||||
|
L_INFO = 2,
|
||||||
|
L_DEBUG = 3,
|
||||||
|
L_LAST,
|
||||||
|
} log_importance_t;
|
||||||
|
|
||||||
|
typedef void (*log_callback_t)(log_importance_t importance, const char *fmt, va_list args);
|
||||||
|
|
||||||
|
void wlr_init_log(log_callback_t callback);
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#define ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))
|
#define ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))
|
|
@ -7,7 +7,7 @@
|
||||||
#include <wlr/render.h>
|
#include <wlr/render.h>
|
||||||
#include <wlr/render/interface.h>
|
#include <wlr/render/interface.h>
|
||||||
#include <wlr/render/matrix.h>
|
#include <wlr/render/matrix.h>
|
||||||
#include <common/log.h>
|
#include <wlr/util/log.h>
|
||||||
#include "render/gles3.h"
|
#include "render/gles3.h"
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <GLES3/gl3.h>
|
#include <GLES3/gl3.h>
|
||||||
#include "common/log.h"
|
#include <wlr/util/log.h>
|
||||||
#include "render/gles3.h"
|
#include "render/gles3.h"
|
||||||
|
|
||||||
const char *gles3_strerror(GLenum err) {
|
const char *gles3_strerror(GLenum err) {
|
||||||
|
|
|
@ -8,7 +8,7 @@ set(sources
|
||||||
)
|
)
|
||||||
|
|
||||||
set(libs
|
set(libs
|
||||||
wlr-common
|
wlr-util
|
||||||
${WAYLAND_LIBRARIES}
|
${WAYLAND_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/session/interface.h>
|
#include <wlr/session/interface.h>
|
||||||
#include "common/log.h"
|
#include <wlr/util/log.h>
|
||||||
|
|
||||||
const struct session_impl session_direct;
|
const struct session_impl session_direct;
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/session/interface.h>
|
#include <wlr/session/interface.h>
|
||||||
#include "common/log.h"
|
#include <wlr/util/log.h>
|
||||||
|
|
||||||
enum { DRM_MAJOR = 226 };
|
enum { DRM_MAJOR = 226 };
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <wlr/session.h>
|
#include <wlr/session.h>
|
||||||
#include <wlr/session/interface.h>
|
#include <wlr/session/interface.h>
|
||||||
#include "common/log.h"
|
#include <wlr/util/log.h>
|
||||||
|
|
||||||
extern const struct session_impl session_logind;
|
extern const struct session_impl session_logind;
|
||||||
extern const struct session_impl session_direct;
|
extern const struct session_impl session_direct;
|
||||||
|
|
|
@ -14,6 +14,6 @@ add_library(wlr-types
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(wlr-types
|
target_link_libraries(wlr-types
|
||||||
wlr-common
|
wlr-util
|
||||||
${WAYLAND_LIBRARIES}
|
${WAYLAND_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,8 +9,7 @@
|
||||||
#include <wlr/interfaces/wlr_touch.h>
|
#include <wlr/interfaces/wlr_touch.h>
|
||||||
#include <wlr/interfaces/wlr_tablet_tool.h>
|
#include <wlr/interfaces/wlr_tablet_tool.h>
|
||||||
#include <wlr/interfaces/wlr_tablet_pad.h>
|
#include <wlr/interfaces/wlr_tablet_pad.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/log.h>
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
struct wlr_input_device *wlr_input_device_create(
|
struct wlr_input_device *wlr_input_device_create(
|
||||||
enum wlr_input_device_type type,
|
enum wlr_input_device_type type,
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/types/wlr_keyboard.h>
|
#include <wlr/types/wlr_keyboard.h>
|
||||||
#include <wlr/interfaces/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 *wlr_keyboard_create(struct wlr_keyboard_impl *impl,
|
||||||
struct wlr_keyboard_state *state) {
|
struct wlr_keyboard_state *state) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/types/wlr_output.h>
|
#include <wlr/types/wlr_output.h>
|
||||||
#include <wlr/interfaces/wlr_output.h>
|
#include <wlr/interfaces/wlr_output.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/list.h>
|
||||||
|
|
||||||
static const float transforms[][4] = {
|
static const float transforms[][4] = {
|
||||||
[WL_OUTPUT_TRANSFORM_NORMAL] = {
|
[WL_OUTPUT_TRANSFORM_NORMAL] = {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/types/wlr_pointer.h>
|
#include <wlr/types/wlr_pointer.h>
|
||||||
#include <wlr/interfaces/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 *wlr_pointer_create(struct wlr_pointer_impl *impl,
|
||||||
struct wlr_pointer_state *state) {
|
struct wlr_pointer_state *state) {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/types/wlr_tablet_pad.h>
|
#include <wlr/types/wlr_tablet_pad.h>
|
||||||
#include <wlr/interfaces/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 *wlr_tablet_pad_create(struct wlr_tablet_pad_impl *impl,
|
||||||
struct wlr_tablet_pad_state *state) {
|
struct wlr_tablet_pad_state *state) {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/types/wlr_tablet_tool.h>
|
#include <wlr/types/wlr_tablet_tool.h>
|
||||||
#include <wlr/interfaces/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 *wlr_tablet_tool_create(struct wlr_tablet_tool_impl *impl,
|
||||||
struct wlr_tablet_tool_state *state) {
|
struct wlr_tablet_tool_state *state) {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/types/wlr_touch.h>
|
#include <wlr/types/wlr_touch.h>
|
||||||
#include <wlr/interfaces/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 *wlr_touch_create(struct wlr_touch_impl *impl,
|
||||||
struct wlr_touch_state *state) {
|
struct wlr_touch_state *state) {
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
add_library(wlr-util STATIC
|
||||||
|
list.c
|
||||||
|
log.c
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(wlr-util m)
|
|
@ -2,7 +2,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <wlr/common/list.h>
|
#include <wlr/util/list.h>
|
||||||
|
|
||||||
list_t *list_create(void) {
|
list_t *list_create(void) {
|
||||||
list_t *list = malloc(sizeof(list_t));
|
list_t *list = malloc(sizeof(list_t));
|
|
@ -6,11 +6,9 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "wlr/common/log.h"
|
#include <wlr/util/log.h>
|
||||||
#include "common/log.h"
|
|
||||||
|
|
||||||
static bool colored = true;
|
static bool colored = true;
|
||||||
static log_callback_t log_callback = wlr_log_stderr;
|
|
||||||
|
|
||||||
static const char *verbosity_colors[] = {
|
static const char *verbosity_colors[] = {
|
||||||
[L_SILENT] = "",
|
[L_SILENT] = "",
|
||||||
|
@ -19,10 +17,6 @@ static const char *verbosity_colors[] = {
|
||||||
[L_DEBUG ] = "\x1B[1;30m",
|
[L_DEBUG ] = "\x1B[1;30m",
|
||||||
};
|
};
|
||||||
|
|
||||||
void wlr_log_init(log_callback_t callback) {
|
|
||||||
log_callback = callback;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) {
|
void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) {
|
||||||
// prefix the time to the log message
|
// prefix the time to the log message
|
||||||
struct tm result;
|
struct tm result;
|
||||||
|
@ -48,6 +42,12 @@ void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) {
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static log_callback_t log_callback = wlr_log_stderr;
|
||||||
|
|
||||||
|
void wlr_log_init(log_callback_t callback) {
|
||||||
|
log_callback = callback;
|
||||||
|
}
|
||||||
|
|
||||||
void _wlr_vlog(log_importance_t verbosity, const char *fmt, va_list args) {
|
void _wlr_vlog(log_importance_t verbosity, const char *fmt, va_list args) {
|
||||||
log_callback(verbosity, fmt, args);
|
log_callback(verbosity, fmt, args);
|
||||||
}
|
}
|
Loading…
Reference in New Issue