mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
13 lines
277 B
C
13 lines
277 B
C
#ifndef BACKEND_WLR_BACKEND_H
|
|
#define BACKEND_WLR_BACKEND_H
|
|
|
|
#include <wlr/backend.h>
|
|
|
|
/**
|
|
* Get the supported buffer capabilities.
|
|
*
|
|
* This functions returns a bitfield of supported wlr_buffer_cap.
|
|
*/
|
|
uint32_t backend_get_buffer_caps(struct wlr_backend *backend);
|
|
|
|
#endif
|