mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-22 06:47:12 -04:00
Add wlr_box to crop buffer for DRM output
This commit is contained in:
parent
21fecd6015
commit
bdc3358922
3 changed files with 44 additions and 7 deletions
|
|
@ -16,6 +16,7 @@
|
|||
#include <wayland-util.h>
|
||||
#include <wlr/types/wlr_buffer.h>
|
||||
#include <wlr/util/addon.h>
|
||||
#include <wlr/types/wlr_box.h>
|
||||
|
||||
struct wlr_output_mode {
|
||||
int32_t width, height;
|
||||
|
|
@ -72,6 +73,7 @@ enum wlr_output_state_field {
|
|||
WLR_OUTPUT_STATE_TRANSFORM = 1 << 5,
|
||||
WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED = 1 << 6,
|
||||
WLR_OUTPUT_STATE_GAMMA_LUT = 1 << 7,
|
||||
WLR_OUTPUT_STATE_SOURCE_BOX = 1 << 8,
|
||||
};
|
||||
|
||||
enum wlr_output_state_mode_type {
|
||||
|
|
@ -89,6 +91,9 @@ struct wlr_output_state {
|
|||
float scale;
|
||||
enum wl_output_transform transform;
|
||||
bool adaptive_sync_enabled;
|
||||
/* allow partial buffer scanout for tiling displays
|
||||
* only valid if WLR_OUTPUT_STATE_SOURCE_BOX */
|
||||
struct wlr_box source_box; // source box for respective output
|
||||
|
||||
// only valid if WLR_OUTPUT_STATE_BUFFER
|
||||
struct wlr_buffer *buffer;
|
||||
|
|
@ -372,6 +377,14 @@ uint32_t wlr_output_preferred_read_format(struct wlr_output *output);
|
|||
*/
|
||||
void wlr_output_set_damage(struct wlr_output *output,
|
||||
pixman_region32_t *damage);
|
||||
/**
|
||||
* This can be used in case the output buffer is larger than the buffer that
|
||||
* is supposed to be presented on the actual screen attached to the DRM
|
||||
* connector. Current use case are hi-res tiling displays which use multiple
|
||||
* DRM connectors to make up the full monitor.
|
||||
*/
|
||||
void wlr_output_set_source_box(struct wlr_output *output,
|
||||
struct wlr_box source_box);
|
||||
/**
|
||||
* Test whether the pending output state would be accepted by the backend. If
|
||||
* this function returns true, `wlr_output_commit` can only fail due to a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue