compositor: Avoid compiler warning and build failure
[src/agl-compositor.git] / src / ivi-compositor.h
index ca40fff..62e70e1 100644 (file)
@@ -51,11 +51,20 @@ enum agl_shell_bound_status {
        BOUND_FAILED,
 };
 
+struct ivi_output_config {
+       int width;
+       int height;
+       int32_t scale;
+       uint32_t transform;
+};
+
 struct ivi_compositor {
        struct weston_compositor *compositor;
        struct weston_config *config;
+       struct ivi_output_config *parsed_options;
 
        struct wl_listener heads_changed;
+       int (*simple_output_configure)(struct weston_output *output);
 
        bool init_failed;
        bool disable_cursor;
@@ -549,5 +558,7 @@ void
 _ivi_set_shell_surface_split(struct ivi_surface *surface, struct ivi_output *output,
                             uint32_t orientation, uint32_t width, int32_t sticky,
                             bool to_activate);
+struct ivi_output_config *
+ivi_init_parsed_options(struct weston_compositor *compositor);
 
 #endif