Mercurial > repos > blastem
comparison render.h @ 2532:f4a471730ba4
Implement clipboard paste for SC-3000
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Tue, 26 Nov 2024 23:47:38 -0800 |
parents | bed4d3db8a3f |
children | 251cc75574af |
comparison
equal
deleted
inserted
replaced
2531:f973651b48d7 | 2532:f4a471730ba4 |
---|---|
147 void render_set_external_sync(uint8_t ext_sync_on); | 147 void render_set_external_sync(uint8_t ext_sync_on); |
148 void render_reset_mappings(void); | 148 void render_reset_mappings(void); |
149 void render_update_display(void); | 149 void render_update_display(void); |
150 int render_ui_to_pixels_x(int ui); | 150 int render_ui_to_pixels_x(int ui); |
151 int render_ui_to_pixels_y(int ui); | 151 int render_ui_to_pixels_y(int ui); |
152 char *render_read_clipboard(void); | |
152 #ifndef IS_LIB | 153 #ifndef IS_LIB |
153 uint8_t render_create_thread(render_thread *thread, const char *name, render_thread_fun fun, void *data); | 154 uint8_t render_create_thread(render_thread *thread, const char *name, render_thread_fun fun, void *data); |
154 uint8_t render_static_image(uint8_t window, uint8_t *buffer, uint32_t size); | 155 uint8_t render_static_image(uint8_t window, uint8_t *buffer, uint32_t size); |
155 void render_draw_image(uint8_t window, uint8_t image, int x, int y, int width, int height); | 156 void render_draw_image(uint8_t window, uint8_t image, int x, int y, int width, int height); |
156 void render_clear_window(uint8_t window, uint8_t r, uint8_t g, uint8_t b); | 157 void render_clear_window(uint8_t window, uint8_t r, uint8_t g, uint8_t b); |