1

库:http ://www.pixman.org/

存储库:https ://cgit.freedesktop.org/pixman/tree/

无效 pixman_region32_init (pixman_region32_t *region);

我找不到该功能的实现..

谢谢...

4

2 回答 2

1

它位于 pixman/pixman.h (pixman-0.34.0)

ypedef struct pixman_region32_data     pixman_region32_data_t;
typedef struct pixman_box32             pixman_box32_t;
typedef struct pixman_rectangle32       pixman_rectangle32_t;
typedef struct pixman_region32          pixman_region32_t;

struct pixman_region32_data {
    long                size;
    long                numRects;
/*  pixman_box32_t      rects[size];   in memory but not explicitly declared */
};

struct pixman_rectangle32
{
    int32_t x, y;
    uint32_t width, height;
};

struct pixman_box32
{
    int32_t x1, y1, x2, y2;
};

struct pixman_region32
{
    pixman_box32_t          extents;
    pixman_region32_data_t  *data;
};
于 2018-06-27T10:44:08.247 回答
0

它在pixman-region32.c。您看不到它,因为这些函数是由PREFIX宏生成的,然后pixman-region.c使用了其中的代码。看这里:

typedef pixman_box32_t      box_type_t;
typedef pixman_region32_data_t  region_data_type_t;
typedef pixman_region32_t   region_type_t;
typedef int64_t                 overflow_int_t;

typedef struct {
    int x, y;
} point_type_t;

#define PREFIX(x) pixman_region32##x

#define PIXMAN_REGION_MAX INT32_MAX
#define PIXMAN_REGION_MIN INT32_MIN

#include "pixman-region.c"

它首先将PREFIX宏设置为pixman_region32,然后从pixman-region.c.

于 2018-09-05T13:27:23.653 回答