Skip to content

Commit

Permalink
Fixed region32 declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Dec 20, 2024
1 parent 3244388 commit b625ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wlroots/ffi_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ def has_xwayland() -> bool:
struct wlr_output_event_damage {
struct wlr_output *output;
const pixman_region32_t *damage; // output-buffer-local coordinates
const pixman_region32 *damage; // output-buffer-local coordinates
...;
};
Expand Down Expand Up @@ -1229,7 +1229,7 @@ def has_xwayland() -> bool:
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);
void wlr_output_state_set_damage(struct wlr_output_state *state,
const pixman_region32_t *damage);
const pixman_region32 *damage);
void wlr_output_state_set_layers(struct wlr_output_state *state,
struct wlr_output_layer_state *layers, size_t layers_len);
bool wlr_output_state_copy(struct wlr_output_state *dst,
Expand Down

0 comments on commit b625ecb

Please sign in to comment.