]> Dogcows Code - chaz/openbox/blob - render/geom.h
f6fa4f24862d6b7590a254725e9ce9dc5af02873
[chaz/openbox] / render / geom.h
1 #ifndef __geom_h
2 #define __geom_h
3
4 typedef struct {
5 int width;
6 int height;
7 } RrSize;
8
9 typedef struct {
10 int x;
11 int y;
12 int width;
13 int height;
14 } RrRect;
15
16 #define RECT_SET(r, nx, ny, w, h) \
17 (r).x = (nx), (r).y = (ny), (r).width = (w), (r).height = (h)
18
19 #endif
This page took 0.03367 seconds and 3 git commands to generate.