Update everyone to use new headers

This commit is contained in:
Drew DeVault 2017-06-21 10:27:45 -04:00
parent 53a8b4f127
commit fd91244e83
32 changed files with 68 additions and 48 deletions

View file

@ -4,8 +4,8 @@
#include <wlr/backend/interface.h>
#include <wlr/common/list.h>
#include <wayland-server-core.h>
#include <wlr/interfaces/wlr_input_device.h>
#include "backend/udev.h"
#include "types.h"
struct wlr_backend_state {
struct wlr_backend *backend;

View file

@ -6,6 +6,7 @@
#include <wayland-egl.h>
#include <wlr/common/list.h>
#include <wlr/backend/wayland.h>
#include <wlr/types/wlr_input_device.h>
#include "backend/egl.h"
struct wlr_backend_state {

View file

@ -6,7 +6,7 @@
#include <wlr/session.h>
#include <wlr/backend.h>
#include <wlr/backend/udev.h>
#include <wlr/types.h>
#include <wlr/types/wlr_input_device.h>
struct wlr_backend *wlr_libinput_backend_create(struct wl_display *display,
struct wlr_session *session, struct wlr_udev *udev);

View file

@ -1,6 +1,6 @@
#ifndef _WLR_INTERFACE_OUTPUT_H
#define _WLR_INTERFACE_OUTPUT_H
#include <wlr/interfaces/wlr_output.h>
#include <wlr/types/wlr_output.h>
#include <stdbool.h>
struct wlr_output_impl {
@ -18,5 +18,6 @@ struct wlr_output_impl {
struct wlr_output *wlr_output_create(struct wlr_output_impl *impl,
struct wlr_output_state *state);
void wlr_output_free(struct wlr_output *output);
void wlr_output_update_matrix(struct wlr_output *output);
#endif

View file

@ -2,7 +2,7 @@
#define _WLR_RENDER_H
#include <stdint.h>
#include <wayland-server-protocol.h>
#include <wlr/types.h>
#include <wlr/types/wlr_output.h>
struct wlr_surface;
struct wlr_renderer;

View file

@ -3,7 +3,7 @@
#include <wayland-server-protocol.h>
#include <stdbool.h>
#include <wlr/render.h>
#include <wlr/types.h>
#include <wlr/types/wlr_output.h>
struct wlr_renderer_impl;
struct wlr_renderer_state;