From c775ca6133d93ed97359a6a50bd94a5563c740de Mon Sep 17 00:00:00 2001 From: fschildt Date: Wed, 1 Oct 2025 14:08:24 +0200 Subject: general refactoring, prepare breakout game --- src/renderer/RSoftwareBackend.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/renderer/RSoftwareBackend.hpp') diff --git a/src/renderer/RSoftwareBackend.hpp b/src/renderer/RSoftwareBackend.hpp index 5457c7e..53cca9b 100644 --- a/src/renderer/RSoftwareBackend.hpp +++ b/src/renderer/RSoftwareBackend.hpp @@ -13,7 +13,7 @@ public: uint32_t ashift; int32_t w; int32_t h; - uint32_t *pixels; + uint32_t* pixels; }; @@ -27,8 +27,8 @@ private: void ResizeCanvas(int32_t w, int32_t h); void SortRenderEntities(); - void DrawRectangle(REntity_Rectangle& rect); - void DrawMonoBitmap(REntity_MonoBitmap& mono_bitmap, Color color); + void DrawRectangle(REntity_Rectangle& entity); + void DrawMonoBitmap(REntity_MonoBitmap& entity); private: -- cgit v1.2.3