summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 13165129b1..2f8fd3e751 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -178,8 +178,9 @@ struct frame_buffer_t {
178 178
179#define VP_IS_RTL(vp) (((vp)->flags & VP_FLAG_ALIGNMENT_MASK) == VP_FLAG_ALIGN_RIGHT) 179#define VP_IS_RTL(vp) (((vp)->flags & VP_FLAG_ALIGNMENT_MASK) == VP_FLAG_ALIGN_RIGHT)
180 180
181#define VP_FLAG_VP_DIRTY 0x4000 181#define VP_FLAG_OWNER_UPDATE 0x2000 /* block update_vp functions */
182#define VP_FLAG_CLEAR_FLAG 0x8000 182#define VP_FLAG_VP_DIRTY 0x4000
183#define VP_FLAG_CLEAR_FLAG 0x8000
183#define VP_FLAG_VP_SET_CLEAN (VP_FLAG_CLEAR_FLAG | VP_FLAG_VP_DIRTY) 184#define VP_FLAG_VP_SET_CLEAN (VP_FLAG_CLEAR_FLAG | VP_FLAG_VP_DIRTY)
184 185
185struct viewport { 186struct viewport {