1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef TEENSY_RENDERER_H_ #define TEENSY_RENDERER_H_ #include "teensy_common.h" #include "teensy.h" struct ty_renderer { struct ty_image screen; struct ty_image target; }; void ty_init_renderer(void); void ty_deinit_renderer(void); #endif // TEENSY_RENDERER_H_