mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-05 16:58:01 +02:00
compositor: Disallow negative geometries in backend output configs
Signed-off-by: Bryce Harrington <bryce@osg.samsung.com> Reviewed-by: Giulio Camuffo <giuliocamuffo@gmail.com>
This commit is contained in:
parent
cd0f1acff4
commit
32c3211e38
1 changed files with 3 additions and 3 deletions
|
|
@ -619,9 +619,9 @@ enum weston_capability {
|
|||
*/
|
||||
struct weston_backend_output_config {
|
||||
uint32_t transform;
|
||||
int32_t width;
|
||||
int32_t height;
|
||||
int scale;
|
||||
uint32_t width;
|
||||
uint32_t height;
|
||||
uint32_t scale;
|
||||
};
|
||||
|
||||
/* Configuration struct for a backend.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue