diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-02 18:48:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 18:48:09 -0400 |
commit | 1654fc80ebdc4c69d86cbb700ceeb49b8f090c62 (patch) | |
tree | 9973c182ff78d3758e9487166ca55dc58d006e86 /include/wlr/interfaces/wlr_output.h | |
parent | 0780d7856a1ec2b6f3bcf2837cd5f697556c531e (diff) | |
parent | c3afe4f42e3ddfbd51500d99416b51aee552b689 (diff) |
Merge pull request #1157 from emersion/wlr-gamma-control
Implement wlr-gamma-control-unstable-v1
Diffstat (limited to 'include/wlr/interfaces/wlr_output.h')
-rw-r--r-- | include/wlr/interfaces/wlr_output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h index 2224932f..4860a5b6 100644 --- a/include/wlr/interfaces/wlr_output.h +++ b/include/wlr/interfaces/wlr_output.h @@ -28,7 +28,7 @@ struct wlr_output_impl { void (*destroy)(struct wlr_output *output); bool (*make_current)(struct wlr_output *output, int *buffer_age); bool (*swap_buffers)(struct wlr_output *output, pixman_region32_t *damage); - void (*set_gamma)(struct wlr_output *output, + bool (*set_gamma)(struct wlr_output *output, uint32_t size, uint16_t *r, uint16_t *g, uint16_t *b); uint32_t (*get_gamma_size)(struct wlr_output *output); bool (*export_dmabuf)(struct wlr_output *output, |