mirror of
https://github.com/swaywm/sway.git
synced 2025-10-31 22:25:26 -04:00
Normalize indentation
This commit is contained in:
parent
9a1e95b7da
commit
665d4baaf1
2 changed files with 57 additions and 57 deletions
|
|
@ -8,36 +8,36 @@
|
|||
#include "list.h"
|
||||
|
||||
struct output_state {
|
||||
struct wl_output *output;
|
||||
uint32_t flags;
|
||||
uint32_t width, height;
|
||||
struct wl_output *output;
|
||||
uint32_t flags;
|
||||
uint32_t width, height;
|
||||
};
|
||||
|
||||
struct buffer {
|
||||
struct wl_buffer *buffer;
|
||||
int fd;
|
||||
cairo_surface_t *surface;
|
||||
cairo_t *cairo;
|
||||
PangoContext *pango;
|
||||
uint32_t width, height;
|
||||
bool busy;
|
||||
struct wl_buffer *buffer;
|
||||
int fd;
|
||||
cairo_surface_t *surface;
|
||||
cairo_t *cairo;
|
||||
PangoContext *pango;
|
||||
uint32_t width, height;
|
||||
bool busy;
|
||||
};
|
||||
|
||||
struct client_state {
|
||||
struct wl_compositor *compositor;
|
||||
struct wl_display *display;
|
||||
struct wl_pointer *pointer;
|
||||
struct wl_seat *seat;
|
||||
struct wl_shell *shell;
|
||||
struct wl_shm *shm;
|
||||
struct buffer buffers[2];
|
||||
struct buffer *buffer;
|
||||
struct wl_surface *surface;
|
||||
struct wl_shell_surface *shell_surface;
|
||||
struct wl_callback *frame_cb;
|
||||
uint32_t width, height;
|
||||
cairo_t *cairo;
|
||||
list_t *outputs;
|
||||
struct wl_compositor *compositor;
|
||||
struct wl_display *display;
|
||||
struct wl_pointer *pointer;
|
||||
struct wl_seat *seat;
|
||||
struct wl_shell *shell;
|
||||
struct wl_shm *shm;
|
||||
struct buffer buffers[2];
|
||||
struct buffer *buffer;
|
||||
struct wl_surface *surface;
|
||||
struct wl_shell_surface *shell_surface;
|
||||
struct wl_callback *frame_cb;
|
||||
uint32_t width, height;
|
||||
cairo_t *cairo;
|
||||
list_t *outputs;
|
||||
};
|
||||
|
||||
struct client_state *client_setup(uint32_t width, uint32_t height);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue