mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
75 lines
2.3 KiB
C
75 lines
2.3 KiB
C
#include <assert.h>
|
|
#include <pixman.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <wayland-server-protocol.h>
|
|
#include <wlr/types/wlr_region.h>
|
|
#include "types/wlr_region.h"
|
|
|
|
static const struct wl_region_interface region_impl;
|
|
|
|
static pixman_region32_t *region_from_resource(struct wl_resource *resource) {
|
|
assert(wl_resource_instance_of(resource, &wl_region_interface,
|
|
®ion_impl));
|
|
return wl_resource_get_user_data(resource);
|
|
}
|
|
|
|
const pixman_region32_t *wlr_region_from_resource(struct wl_resource *resource) {
|
|
return region_from_resource(resource);
|
|
}
|
|
|
|
static void region_add(struct wl_client *client, struct wl_resource *resource,
|
|
int32_t x, int32_t y, int32_t width, int32_t height) {
|
|
pixman_region32_t *region = region_from_resource(resource);
|
|
pixman_region32_union_rect(region, region, x, y, width, height);
|
|
}
|
|
|
|
static void region_subtract(struct wl_client *client, struct wl_resource *resource,
|
|
int32_t x, int32_t y, int32_t width, int32_t height) {
|
|
pixman_region32_t *region = region_from_resource(resource);
|
|
pixman_region32_union_rect(region, region, x, y, width, height);
|
|
|
|
pixman_region32_t rect;
|
|
pixman_region32_init_rect(&rect, x, y, width, height);
|
|
pixman_region32_subtract(region, region, &rect);
|
|
pixman_region32_fini(&rect);
|
|
}
|
|
|
|
static void region_destroy(struct wl_client *client, struct wl_resource *resource) {
|
|
wl_resource_destroy(resource);
|
|
}
|
|
|
|
static const struct wl_region_interface region_impl = {
|
|
.destroy = region_destroy,
|
|
.add = region_add,
|
|
.subtract = region_subtract,
|
|
};
|
|
|
|
static void region_handle_resource_destroy(struct wl_resource *resource) {
|
|
pixman_region32_t *reg = region_from_resource(resource);
|
|
pixman_region32_fini(reg);
|
|
free(reg);
|
|
}
|
|
|
|
struct wl_resource *region_create(struct wl_client *client,
|
|
uint32_t version, uint32_t id) {
|
|
pixman_region32_t *region = calloc(1, sizeof(pixman_region32_t));
|
|
if (region == NULL) {
|
|
wl_client_post_no_memory(client);
|
|
return NULL;
|
|
}
|
|
|
|
pixman_region32_init(region);
|
|
|
|
struct wl_resource *region_resource = wl_resource_create(client,
|
|
&wl_region_interface, version, id);
|
|
if (region_resource == NULL) {
|
|
free(region);
|
|
wl_client_post_no_memory(client);
|
|
return NULL;
|
|
}
|
|
wl_resource_set_implementation(region_resource, ®ion_impl, region,
|
|
region_handle_resource_destroy);
|
|
|
|
return region_resource;
|
|
}
|