[PATCH 04/15] window: allow setting a buffer scale on a window
alexl at redhat.com
alexl at redhat.com
Wed May 22 05:41:28 PDT 2013
From: Alexander Larsson <alexl at redhat.com>
---
clients/window.c | 25 +++++++++++++++++++++++--
clients/window.h | 7 +++++++
2 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/clients/window.c b/clients/window.c
index 36fda25..378cc75 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -152,7 +152,7 @@ struct toysurface {
* Prepare the surface for drawing. Makes sure there is a surface
* of the right size available for rendering, and returns it.
* dx,dy are the x,y of wl_surface.attach.
- * width,height are the new surface size.
+ * width,height are the new buffer size.
* If flags has SURFACE_HINT_RESIZE set, the user is
* doing continuous resizing.
* Returns the Cairo surface to draw to.
@@ -208,6 +208,7 @@ struct surface {
enum window_buffer_type buffer_type;
enum wl_output_transform buffer_transform;
+ uint32_t buffer_scale;
cairo_surface_t *cairo_surface;
@@ -1325,6 +1326,9 @@ surface_create_surface(struct surface *surface, int dx, int dy, uint32_t flags)
break;
}
+ allocation.width *= surface->buffer_scale;
+ allocation.height *= surface->buffer_scale;
+
if (!surface->toysurface && display->dpy &&
surface->buffer_type == WINDOW_BUFFER_TYPE_EGL_WINDOW) {
surface->toysurface =
@@ -1383,6 +1387,21 @@ window_set_buffer_transform(struct window *window,
transform);
}
+void
+window_set_buffer_scale(struct window *window,
+ uint32_t scale)
+{
+ window->main_surface->buffer_scale = scale;
+ wl_surface_set_buffer_scale(window->main_surface->surface,
+ scale);
+}
+
+uint32_t
+window_get_buffer_scale(struct window *window)
+{
+ return window->main_surface->buffer_scale;
+}
+
static void frame_destroy(struct frame *frame);
static void
@@ -1621,7 +1640,8 @@ widget_cairo_update_transform(struct widget *widget, cairo_t *cr)
surface_width = surface->allocation.width;
surface_height = surface->allocation.height;
- transform = window_get_buffer_transform(widget->window);
+ transform = surface->buffer_transform;
+
switch (transform) {
case WL_OUTPUT_TRANSFORM_FLIPPED:
case WL_OUTPUT_TRANSFORM_FLIPPED_90:
@@ -4057,6 +4077,7 @@ surface_create(struct window *window)
surface->window = window;
surface->surface = wl_compositor_create_surface(display->compositor);
+ surface->buffer_scale = 1;
wl_surface_add_listener(surface->surface, &surface_listener, window);
wl_list_insert(&window->subsurface_list, &surface->link);
diff --git a/clients/window.h b/clients/window.h
index c0a7cb6..fec601f 100644
--- a/clients/window.h
+++ b/clients/window.h
@@ -253,6 +253,13 @@ void
window_set_buffer_transform(struct window *window,
enum wl_output_transform transform);
+uint32_t
+window_get_buffer_scale(struct window *window);
+
+void
+window_set_buffer_scale(struct window *window,
+ uint32_t scale);
+
void
window_destroy(struct window *window);
--
1.8.1.4
More information about the wayland-devel
mailing list