From b26f27d9e3fd44ec5775accdc3666a339684be4c Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Mon, 1 Aug 2022 20:03:12 -0400 Subject: large changes to bitmap structure --- threading.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'threading.cpp') diff --git a/threading.cpp b/threading.cpp index 1b89136..c1cfe5c 100644 --- a/threading.cpp +++ b/threading.cpp @@ -1,4 +1,4 @@ -internal void +static void PushRect(rectangle RenderRegion) { uint32 Q = SDL_AtomicGet(&QueuedEntries); @@ -8,10 +8,10 @@ PushRect(rectangle RenderRegion) SDL_SemPost(Semaphore); } -internal void +static void RenderLayers(render_queue *RenderInfo, rectangle RenderRegion); -internal bool32 +static bool32 CheckQueue(render_queue RenderInfo, uint16 Index) { bool32 Result = 0; @@ -31,7 +31,7 @@ CheckQueue(render_queue RenderInfo, uint16 Index) return Result; } -internal int +static int TestThread(void *ptr) { thread_info *ThreadInfo = (thread_info *)ptr; -- cgit v1.2.3