diff options
Diffstat (limited to 'src/androidgui.h')
| -rw-r--r-- | src/androidgui.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/androidgui.h b/src/androidgui.h index 6db25098398..02cc73809b9 100644 --- a/src/androidgui.h +++ b/src/androidgui.h | |||
| @@ -137,6 +137,21 @@ struct android_gc | |||
| 137 | 137 | ||
| 138 | /* Current background color. */ | 138 | /* Current background color. */ |
| 139 | unsigned long background; | 139 | unsigned long background; |
| 140 | |||
| 141 | /* The function. */ | ||
| 142 | enum android_gc_function function; | ||
| 143 | |||
| 144 | /* The fill style. */ | ||
| 145 | enum android_fill_style fill_style; | ||
| 146 | |||
| 147 | /* The clip X and Y origin. */ | ||
| 148 | int clip_x_origin, clip_y_origin; | ||
| 149 | |||
| 150 | /* The clip mask image and stipple. */ | ||
| 151 | android_pixmap clip_mask, stipple; | ||
| 152 | |||
| 153 | /* The tile-stipple X and Y origins. */ | ||
| 154 | int ts_x_origin, ts_y_origin; | ||
| 140 | }; | 155 | }; |
| 141 | 156 | ||
| 142 | enum android_swap_action | 157 | enum android_swap_action |