mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 21:05:58 +01:00
output: introduce wlr_output_state_set_damage()
This commit is contained in:
parent
709c9dd287
commit
ae7bad86dd
2 changed files with 19 additions and 0 deletions
|
@ -573,6 +573,13 @@ void wlr_output_state_set_buffer(struct wlr_output_state *state,
|
||||||
struct wlr_buffer *buffer);
|
struct wlr_buffer *buffer);
|
||||||
bool wlr_output_state_set_gamma_lut(struct wlr_output_state *state,
|
bool wlr_output_state_set_gamma_lut(struct wlr_output_state *state,
|
||||||
size_t ramp_size, const uint16_t *r, const uint16_t *g, const uint16_t *b);
|
size_t ramp_size, const uint16_t *r, const uint16_t *g, const uint16_t *b);
|
||||||
|
/**
|
||||||
|
* Sets the state's damage region.
|
||||||
|
*
|
||||||
|
* This should be called in along with wlr_output_state_set_buffer().
|
||||||
|
*/
|
||||||
|
void wlr_output_state_set_damage(struct wlr_output_state *state,
|
||||||
|
const pixman_region32_t *damage);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -76,6 +76,18 @@ void wlr_output_state_set_buffer(struct wlr_output_state *state,
|
||||||
state->buffer = wlr_buffer_lock(buffer);
|
state->buffer = wlr_buffer_lock(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wlr_output_state_set_damage(struct wlr_output_state *state,
|
||||||
|
const pixman_region32_t *damage) {
|
||||||
|
if (state->committed & WLR_OUTPUT_STATE_DAMAGE) {
|
||||||
|
pixman_region32_fini(&state->damage);
|
||||||
|
}
|
||||||
|
|
||||||
|
state->committed |= WLR_OUTPUT_STATE_DAMAGE;
|
||||||
|
|
||||||
|
pixman_region32_init(&state->damage);
|
||||||
|
pixman_region32_copy(&state->damage, damage);
|
||||||
|
}
|
||||||
|
|
||||||
bool wlr_output_state_set_gamma_lut(struct wlr_output_state *state,
|
bool wlr_output_state_set_gamma_lut(struct wlr_output_state *state,
|
||||||
size_t ramp_size, const uint16_t *r, const uint16_t *g, const uint16_t *b) {
|
size_t ramp_size, const uint16_t *r, const uint16_t *g, const uint16_t *b) {
|
||||||
uint16_t *gamma_lut = NULL;
|
uint16_t *gamma_lut = NULL;
|
||||||
|
|
Loading…
Reference in a new issue