mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-19 06:59:48 -05:00
Consider scale factor when rendering views
This commit is contained in:
parent
03c0d41ca9
commit
a7446792a1
7 changed files with 32 additions and 6 deletions
|
|
@ -8,6 +8,7 @@ struct output_config {
|
|||
char *name;
|
||||
enum wl_output_transform transform;
|
||||
int x, y;
|
||||
int scale;
|
||||
struct wl_list link;
|
||||
struct {
|
||||
int width, height;
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ enum roots_view_type {
|
|||
|
||||
struct roots_view {
|
||||
struct roots_desktop *desktop;
|
||||
struct roots_output *output;
|
||||
double x, y;
|
||||
float rotation;
|
||||
// TODO: Something for roots-enforced width/height
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
#ifndef WLR_TYPES_WLR_SURFACE_H
|
||||
#define WLR_TYPES_WLR_SURFACE_H
|
||||
|
||||
#include <wayland-server.h>
|
||||
#include <pixman.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <wlr/types/wlr_output.h>
|
||||
|
||||
struct wlr_frame_callback {
|
||||
struct wl_resource *resource;
|
||||
|
|
@ -135,4 +135,8 @@ struct wlr_surface *wlr_surface_get_main_surface(struct wlr_surface *surface);
|
|||
*/
|
||||
struct wlr_subsurface *wlr_surface_subsurface_at(struct wlr_surface *surface,
|
||||
double sx, double sy, double *sub_x, double *sub_y);
|
||||
|
||||
void wlr_surface_send_enter(struct wlr_surface *surface,
|
||||
struct wlr_output *output);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue