fix build
authornotaz <notasas@gmail.com>
Thu, 24 Aug 2023 23:19:01 +0000 (02:19 +0300)
committernotaz <notasas@gmail.com>
Thu, 24 Aug 2023 23:19:01 +0000 (02:19 +0300)
plugins/gpulib/gpulib_thread_if.c
plugins/gpulib/gpulib_thread_if.h

index 1583783..c18a6f6 100644 (file)
@@ -385,9 +385,9 @@ void renderer_sync_ecmds(uint32_t * ecmds) {
        }
 }
 
-void renderer_update_caches(int x, int y, int w, int h) {
+void renderer_update_caches(int x, int y, int w, int h, int state_changed) {
        renderer_sync();
-       real_renderer_update_caches(x, y, w, h);
+       real_renderer_update_caches(x, y, w, h, state_changed);
 }
 
 void renderer_flush_queues(void) {
index b1ea97f..8ce328e 100644 (file)
@@ -28,7 +28,7 @@ int  real_do_cmd_list(uint32_t *list, int count, int *last_cmd);
 int  real_renderer_init(void);
 void real_renderer_finish(void);
 void real_renderer_sync_ecmds(uint32_t * ecmds);
-void real_renderer_update_caches(int x, int y, int w, int h);
+void real_renderer_update_caches(int x, int y, int w, int h, int state_changed);
 void real_renderer_flush_queues(void);
 void real_renderer_set_interlace(int enable, int is_odd);
 void real_renderer_set_config(const struct rearmed_cbs *config);