mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
mtk: Make Rectangle no longer a typedef
Now that we provide our own Region type which uses MtkRectangle directly, there is no longer a need to go through cairo Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3292>
This commit is contained in:
parent
655b4a9c75
commit
156fe0fdd8
@ -28,7 +28,6 @@ supported_mtk_debug_c_args = cc.get_supported_arguments(mtk_debug_c_args)
|
||||
mtk_c_args += mtk_debug_c_args
|
||||
|
||||
mtk_pkg_deps = [
|
||||
cairo_gobject_dep,
|
||||
glib_dep,
|
||||
gobject_dep,
|
||||
gio_dep,
|
||||
|
@ -21,7 +21,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cairo.h>
|
||||
#include <glib-object.h>
|
||||
#include <graphene.h>
|
||||
|
||||
@ -44,14 +43,6 @@ typedef enum _MtkRoundingStrategy
|
||||
* @width: Width of the rectangle
|
||||
* @height: Height of the rectangle
|
||||
*/
|
||||
#ifdef __GI_SCANNER__
|
||||
/* The introspection scanner is currently unable to lookup how
|
||||
* cairo_rectangle_int_t is actually defined. This prevents
|
||||
* introspection data for the GdkRectangle type to include fields
|
||||
* descriptions. To workaround this issue, we define it with the same
|
||||
* content as cairo_rectangle_int_t, but only under the introspection
|
||||
* define.
|
||||
*/
|
||||
struct _MtkRectangle
|
||||
{
|
||||
int x;
|
||||
@ -59,10 +50,8 @@ struct _MtkRectangle
|
||||
int width;
|
||||
int height;
|
||||
};
|
||||
|
||||
typedef struct _MtkRectangle MtkRectangle;
|
||||
#else
|
||||
typedef cairo_rectangle_int_t MtkRectangle;
|
||||
#endif
|
||||
|
||||
#define MTK_RECTANGLE_INIT(_x, _y, _width, _height) \
|
||||
(MtkRectangle) { \
|
||||
|
Loading…
Reference in New Issue
Block a user