summaryrefslogtreecommitdiff
path: root/threading.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'threading.cpp')
-rw-r--r--threading.cpp8
1 files changed, 4 insertions, 4 deletions
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;