From 04e7bacc4c971f7ed90e15a475312b2b69774cb4 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Mon, 26 Oct 2020 15:23:52 -0400 Subject: FIX RED Framebuffer_viewport_rewrite Change-Id: I716929fbee48bef68d7383efb944f9d491fdfe4d --- tools/checkwps/checkwps.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tools/checkwps/checkwps.c') diff --git a/tools/checkwps/checkwps.c b/tools/checkwps/checkwps.c index 80b975e479..a0e0e15962 100644 --- a/tools/checkwps/checkwps.c +++ b/tools/checkwps/checkwps.c @@ -144,6 +144,11 @@ void* plugin_get_buffer(size_t *buffer_size) return pluginbuf; } +static struct viewport* init_viewport(struct viewport* vp) +{ + return NULL; +} + struct user_settings global_settings = { .statusbar = STATUSBAR_TOP, #ifdef HAVE_LCD_COLOR @@ -179,6 +184,7 @@ struct screen screens[NB_SCREENS] = #else .is_color=false, #endif + .init_viewport=init_viewport, .getwidth = getwidth, .getheight = getheight, .getuifont = getuifont, @@ -196,6 +202,7 @@ struct screen screens[NB_SCREENS] = .depth=LCD_REMOTE_DEPTH, .getuifont = getuifont, .is_color=false,/* No color remotes yet */ + .init_viewport=init_viewport, .getwidth=remote_getwidth, .getheight=remote_getheight, #if LCD_REMOTE_DEPTH > 1 -- cgit v1.2.3