mirror of
https://github.com/swaywm/sway.git
synced 2025-10-29 05:40:18 -04:00
Address review comments
This commit is contained in:
parent
653853062f
commit
d39bda76c4
9 changed files with 50 additions and 71 deletions
21
include/pool-buffer.h
Normal file
21
include/pool-buffer.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef _SWAY_BUFFERS_H
|
||||
#define _SWAY_BUFFERS_H
|
||||
#include <cairo/cairo.h>
|
||||
#include <pango/pangocairo.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <wayland-client.h>
|
||||
|
||||
struct pool_buffer {
|
||||
struct wl_buffer *buffer;
|
||||
cairo_surface_t *surface;
|
||||
cairo_t *cairo;
|
||||
PangoContext *pango;
|
||||
uint32_t width, height;
|
||||
bool busy;
|
||||
};
|
||||
|
||||
struct pool_buffer *get_next_buffer(struct wl_shm *shm,
|
||||
struct pool_buffer pool[static 2], uint32_t width, uint32_t height);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue