aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-07-29 07:35:43 -0400
committerDrew DeVault <sir@cmpwn.com>2016-07-29 07:35:43 -0400
commit966127222439620233c27ab835062f6cc69e23ea (patch)
tree7e233c68e7063b7c0c7857a73111e95141fb5b44 /include
parentddb44984c5f3aede3eea45403659e5614a7b752f (diff)
parentcad085ed9ddf57ade3785cabfaea9fb49613d4a3 (diff)
Merge remote-tracking branch 'origin/hidpi'
Diffstat (limited to 'include')
-rw-r--r--include/config.h1
-rw-r--r--include/output.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 87e23187..5e1c123e 100644
--- a/include/config.h
+++ b/include/config.h
@@ -81,6 +81,7 @@ struct output_config {
int enabled;
int width, height;
int x, y;
+ int scale;
char *background;
char *background_option;
};
diff --git a/include/output.h b/include/output.h
index 10c5bb53..e8afd5ed 100644
--- a/include/output.h
+++ b/include/output.h
@@ -19,4 +19,6 @@ void get_absolute_center_position(swayc_t *container, struct wlc_point *point);
// stable sort workspaces on this output
void sort_workspaces(swayc_t *output);
+void output_get_scaled_size(wlc_handle handle, struct wlc_size *size);
+
#endif