72
72
//#define U8G2_16BIT
73
73
74
74
75
- /*
76
- The following macro enables a special check and optimization
77
- in the HVLine procedure for lines with one pixel length.
78
- It enabled, it will consume about 60 bytes in flash memory of the AVR and
79
- there will be a speed improvement of about 20% for any single pixel draw.
80
- */
81
- #define U8G2_WITH_ONE_PIXEL_OPTIMIZATION
82
-
75
+ /* U8g2 feature selection, see also https://github.com/olikraus/u8g2/wiki/u8g2optimization */
83
76
84
77
/*
85
78
The following macro enables the HVLine speed optimization.
86
79
It will consume about 40 bytes more in flash memory of the AVR.
87
80
HVLine procedures are also used by the text drawing functions.
88
81
*/
89
- #define U8G2_HVLINE_SPEED_OPTIMIZATION
90
-
91
- /*
92
- The following macro enables all four drawing directions for glyphs and strings.
93
- If this macro is not defined, than a string can be drawn only in horizontal direction.
94
- */
95
- #define U8G2_WITH_FONT_ROTATION
82
+ #define U8G2_WITH_HVLINE_SPEED_OPTIMIZATION
96
83
97
84
/*
98
85
The following macro activates the early intersection check with the current visible area.
103
90
*/
104
91
#define U8G2_WITH_INTERSECTION
105
92
93
+
94
+ /*
95
+ Enable clip window support:
96
+ void u8g2_SetMaxClipWindow(u8g2_t *u8g2)
97
+ void u8g2_SetClipWindow(u8g2_t *u8g2, u8g2_uint_t clip_x0, u8g2_uint_t clip_y0, u8g2_uint_t clip_x1, u8g2_uint_t clip_y1 )
98
+ Setting a clip window will restrict all drawing to this window.
99
+ Clip window support requires about 200 bytes flash memory on AVR systems
100
+ */
101
+ #define U8G2_WITH_CLIP_WINDOW_SUPPORT
102
+
103
+ /*
104
+ The following macro enables all four drawing directions for glyphs and strings.
105
+ If this macro is not defined, than a string can be drawn only in horizontal direction.
106
+ */
107
+ #define U8G2_WITH_FONT_ROTATION
108
+
106
109
/*
107
110
U8glib V2 contains support for unicode plane 0 (Basic Multilingual Plane, BMP).
108
111
The following macro activates this support. Deactivation would save some ROM.
130
133
#define U8G2_WITH_UNICODE
131
134
132
135
133
- /*
134
- Internal performance test for the effect of enabling U8G2_WITH_INTERSECTION
135
- Should not be defined for production code
136
- */
137
- //#define U8G2_WITH_HVLINE_COUNT
138
-
139
- /*
140
- Defining the following variable adds the clipping and check procedures agains the display boundaries.
141
- Clipping procedures are mandatory for the picture loop (u8g2_FirstPage/NextPage).
142
- Clipping procedures will also allow strings to exceed the display boundaries.
143
- On the other side, without clipping, all the setting of pixels must happen within the display boundaries.
144
-
145
- WARNING: Adding a comment in front of the following macro or removing the following line
146
- may lead to memory faults if you write any pixel outside the display boundary.
147
- */
148
- #define U8G2_WITH_CLIPPING
149
-
150
-
151
136
152
137
153
138
/*==========================================*/
@@ -194,6 +179,7 @@ typedef struct u8g2_struct u8g2_t;
194
179
typedef struct u8g2_cb_struct u8g2_cb_t ;
195
180
196
181
typedef void (* u8g2_update_dimension_cb )(u8g2_t * u8g2 );
182
+ typedef void (* u8g2_update_page_win_cb )(u8g2_t * u8g2 );
197
183
typedef void (* u8g2_draw_l90_cb )(u8g2_t * u8g2 , u8g2_uint_t x , u8g2_uint_t y , u8g2_uint_t len , uint8_t dir );
198
184
typedef void (* u8g2_draw_ll_hvline_cb )(u8g2_t * u8g2 , u8g2_uint_t x , u8g2_uint_t y , u8g2_uint_t len , uint8_t dir );
199
185
@@ -276,7 +262,8 @@ typedef struct _u8g2_kerning_t u8g2_kerning_t;
276
262
277
263
struct u8g2_cb_struct
278
264
{
279
- u8g2_update_dimension_cb update ;
265
+ u8g2_update_dimension_cb update_dimension ;
266
+ u8g2_update_page_win_cb update_page_win ;
280
267
u8g2_draw_l90_cb draw_l90 ;
281
268
};
282
269
@@ -300,24 +287,33 @@ struct u8g2_struct
300
287
u8g2_uint_t pixel_curr_row ; /* u8g2.tile_curr_row*8 */
301
288
302
289
/* the following variables are set by the update dimension callback */
303
- /* this is clipbox after rotation for the hvline procedures */
290
+ /* this is the clipbox after rotation for the hvline procedures */
304
291
//u8g2_uint_t buf_x0; /* left corner of the buffer */
305
292
//u8g2_uint_t buf_x1; /* right corner of the buffer (excluded) */
306
293
u8g2_uint_t buf_y0 ;
307
294
u8g2_uint_t buf_y1 ;
308
295
309
- /* display dimensions in pixel for the user, calculated in u8g2_update_dimension_common(), used in u8g2_draw_hv_line_2dir() */
296
+ /* display dimensions in pixel for the user, calculated in u8g2_update_dimension_common() */
310
297
u8g2_uint_t width ;
311
298
u8g2_uint_t height ;
312
299
313
300
/* ths is the clip box for the user to check if a specific box has an intersection */
314
301
/* use u8g2_IsIntersection from u8g2_intersection.c to test against this intersection */
315
- /* boundary values are part of the box so that they can be used with u8g2_IsIntersection */
302
+ /* actually, this window describes the positon of the current page */
316
303
u8g2_uint_t user_x0 ; /* left corner of the buffer */
317
304
u8g2_uint_t user_x1 ; /* right corner of the buffer (excluded) */
318
305
u8g2_uint_t user_y0 ; /* upper edge of the buffer */
319
306
u8g2_uint_t user_y1 ; /* lower edge of the buffer (excluded) */
320
307
308
+ #ifdef U8G2_WITH_CLIP_WINDOW_SUPPORT
309
+ /* clip window */
310
+ u8g2_uint_t clip_x0 ; /* left corner of the clip window */
311
+ u8g2_uint_t clip_x1 ; /* right corner of the clip window (excluded) */
312
+ u8g2_uint_t clip_y0 ; /* upper edge of the clip window */
313
+ u8g2_uint_t clip_y1 ; /* lower edge of the clip window (excluded) */
314
+ #endif /* U8G2_WITH_CLIP_WINDOW_SUPPORT */
315
+
316
+
321
317
/* information about the current font */
322
318
const uint8_t * font ; /* current font for all text procedures */
323
319
// removed: const u8g2_kerning_t *kerning; /* can be NULL */
@@ -327,6 +323,11 @@ struct u8g2_struct
327
323
u8g2_font_decode_t font_decode ; /* new font decode structure */
328
324
u8g2_font_info_t font_info ; /* new font info structure */
329
325
326
+ #ifdef U8G2_WITH_CLIP_WINDOW_SUPPORT
327
+ /* 1 of there is an intersection between user_?? and clip_?? box */
328
+ uint8_t is_page_clip_window_intersection ;
329
+ #endif /* U8G2_WITH_CLIP_WINDOW_SUPPORT */
330
+
330
331
uint8_t font_height_mode ;
331
332
int8_t font_ref_ascent ;
332
333
int8_t font_ref_descent ;
@@ -341,16 +342,6 @@ struct u8g2_struct
341
342
// the following variable should be renamed to is_buffer_auto_clear
342
343
uint8_t is_auto_page_clear ; /* set to 0 to disable automatic clear of the buffer in firstPage() and nextPage() */
343
344
344
- #ifdef U8G2_WITH_HVLINE_COUNT
345
- unsigned long hv_cnt ;
346
- #endif /* U8G2_WITH_HVLINE_COUNT */
347
-
348
- // removed, there is now the new index table
349
- //#ifdef __unix__
350
- // uint16_t last_unicode;
351
- // const uint8_t *last_font_data;
352
- //#endif
353
-
354
345
};
355
346
356
347
#define u8g2_GetU8x8 (u8g2 ) ((u8x8_t *)(u8g2))
@@ -419,6 +410,9 @@ extern const u8g2_cb_t u8g2_cb_mirror;
419
410
420
411
*/
421
412
413
+ void u8g2_SetMaxClipWindow (u8g2_t * u8g2 );
414
+ void u8g2_SetClipWindow (u8g2_t * u8g2 , u8g2_uint_t clip_x0 , u8g2_uint_t clip_y0 , u8g2_uint_t clip_x1 , u8g2_uint_t clip_y1 );
415
+
422
416
void u8g2_SetupBuffer (u8g2_t * u8g2 , uint8_t * buf , uint8_t tile_buf_height , u8g2_draw_ll_hvline_cb ll_hvline_cb , const u8g2_cb_t * u8g2_cb );
423
417
void u8g2_SetDisplayRotation (u8g2_t * u8g2 , const u8g2_cb_t * u8g2_cb );
424
418
0 commit comments