aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-01-14 11:47:48 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-01-14 11:47:48 -0500
commit2ce1d8d6cd0ae1520ea191678e3c39d555c66b58 (patch)
tree27dd9d31d013fd283e2a5a25db2259802e0a5b8f /sway/desktop/output.c
parentsubsurface input (diff)
downloadsway-2ce1d8d6cd0ae1520ea191678e3c39d555c66b58.tar.gz
sway-2ce1d8d6cd0ae1520ea191678e3c39d555c66b58.tar.zst
sway-2ce1d8d6cd0ae1520ea191678e3c39d555c66b58.zip
render wl-shell and xwayland views
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c35
1 files changed, 34 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 9182f8d5..ec204c6f 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -5,6 +5,7 @@
5#include <wayland-server.h> 5#include <wayland-server.h>
6#include <wlr/types/wlr_output.h> 6#include <wlr/types/wlr_output.h>
7#include <wlr/types/wlr_surface.h> 7#include <wlr/types/wlr_surface.h>
8#include <wlr/types/wlr_wl_shell.h>
8#include <wlr/render.h> 9#include <wlr/render.h>
9#include <wlr/render/matrix.h> 10#include <wlr/render/matrix.h>
10#include "log.h" 11#include "log.h"
@@ -145,6 +146,34 @@ static void render_xdg_v6_popups(struct wlr_xdg_surface_v6 *surface,
145 } 146 }
146} 147}
147 148
149static void render_wl_shell_surface(struct wlr_wl_shell_surface *surface,
150 struct wlr_output *wlr_output, struct timespec *when,
151 double lx, double ly, float rotation,
152 bool is_child) {
153 if (is_child || surface->state != WLR_WL_SHELL_SURFACE_STATE_POPUP) {
154 render_surface(surface->surface, wlr_output, when,
155 lx, ly, rotation);
156
157 double width = surface->surface->current->width;
158 double height = surface->surface->current->height;
159
160 struct wlr_wl_shell_surface *popup;
161 wl_list_for_each(popup, &surface->popups, popup_link) {
162 double popup_width = popup->surface->current->width;
163 double popup_height = popup->surface->current->height;
164
165 double popup_x = popup->transient_state->x;
166 double popup_y = popup->transient_state->y;
167 rotate_child_position(&popup_x, &popup_y, popup_width, popup_height,
168 width, height, rotation);
169
170 render_wl_shell_surface(popup, wlr_output, when,
171 lx + popup_x, ly + popup_y, rotation, true);
172 }
173 }
174}
175
176
148static void output_frame_view(swayc_t *view, void *data) { 177static void output_frame_view(swayc_t *view, void *data) {
149 struct sway_output *output = data; 178 struct sway_output *output = data;
150 struct wlr_output *wlr_output = output->wlr_output; 179 struct wlr_output *wlr_output = output->wlr_output;
@@ -166,10 +195,14 @@ static void output_frame_view(swayc_t *view, void *data) {
166 break; 195 break;
167 } 196 }
168 case SWAY_WL_SHELL_VIEW: 197 case SWAY_WL_SHELL_VIEW:
198 render_wl_shell_surface(sway_view->wlr_wl_shell_surface, wlr_output,
199 &output->last_frame, view->x, view->y, 0, false);
169 break; 200 break;
170 case SWAY_XWAYLAND_VIEW: 201 case SWAY_XWAYLAND_VIEW:
202 render_surface(surface, wlr_output, &output->last_frame, view->x,
203 view->y, 0);
171 break; 204 break;
172 case SWAY_VIEW_TYPES: 205 default:
173 break; 206 break;
174 } 207 }
175} 208}