diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-28 15:32:08 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-10-28 15:32:08 -0400 |
commit | 50e86a0efa43fa72bd7d8c2dfc2d124052f74823 (patch) | |
tree | 8453bac10381a680ae1d12ca84f9dee11d1fa72f /include/rootston/config.h | |
parent | fa9c6ecc53355a53d442036b0a6e98588d2abed7 (diff) |
Allow configuring output mode in rootston
Fixes #336
Diffstat (limited to 'include/rootston/config.h')
-rw-r--r-- | include/rootston/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/rootston/config.h b/include/rootston/config.h index ecbdd88b..75c04619 100644 --- a/include/rootston/config.h +++ b/include/rootston/config.h @@ -9,6 +9,10 @@ struct output_config { enum wl_output_transform transform; int x, y; struct wl_list link; + struct { + int width, height; + float refresh_rate; + } mode; }; struct device_config { |