From 993f45cec7a08a5b980ef5a08ea7ce19b877b743 Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Sat, 14 Dec 2024 09:06:45 +0300 Subject: Animation system update continued The previous one was a partial merge because demo.h and demo.c weren't added(I'm still learning git) --- Week1-Pacman/src/demo.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Week1-Pacman/src/demo.h (limited to 'Week1-Pacman/src/demo.h') diff --git a/Week1-Pacman/src/demo.h b/Week1-Pacman/src/demo.h new file mode 100644 index 0000000..b276027 --- /dev/null +++ b/Week1-Pacman/src/demo.h @@ -0,0 +1,24 @@ +#ifndef DEMO_H_ +#define DEMO_H_ + +#include + +/* + * An abstraction layer over the typical SDL_Renderer + * is meant to handle display scaling mostly +*/ +struct demo { + SDL_Window* win; + SDL_Renderer* ren; + + float display_scale_x; + float display_scale_y; +}; + +void update_demo(struct demo* demo); +void demo_rendercopy(struct demo* demo, + SDL_Texture* texture, + SDL_Rect* s_rect, + SDL_Rect* d_rect); + +#endif // DEMO_H_ -- cgit v1.2.3