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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index ffaf1a63d2..c8eaf1545c 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -27,6 +27,7 @@
27#include "cpu.h" 27#include "cpu.h"
28#include "config.h" 28#include "config.h"
29#include "events.h" 29#include "events.h"
30#include "system.h"
30 31
31 32
32/* Frame buffer stride 33/* Frame buffer stride
@@ -165,9 +166,9 @@ struct frame_buffer_t {
165 fb_remote_data *fb_remote_ptr; 166 fb_remote_data *fb_remote_ptr;
166#endif 167#endif
167 }; 168 };
168 void *(*get_address_fn)(int x, int y);
169 ptrdiff_t stride; 169 ptrdiff_t stride;
170 size_t elems; 170 size_t elems;
171 void *(*get_address_fn)(int x, int y) MEM_ALIGN_ATTR;
171}; 172};
172 173
173#define VP_FLAG_ALIGN_RIGHT 0x01 174#define VP_FLAG_ALIGN_RIGHT 0x01