summaryrefslogtreecommitdiff
path: root/caching.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'caching.cpp')
-rw-r--r--caching.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/caching.cpp b/caching.cpp
index d84377a..c35189e 100644
--- a/caching.cpp
+++ b/caching.cpp
@@ -1,5 +1,6 @@
-internal void
+#if 0
+static void
CacheFrame(cache *Cache, pixel_buffer *CompBuffer)
{
@@ -33,7 +34,7 @@ CacheFrame(cache *Cache, pixel_buffer *CompBuffer)
}
}
-internal void
+static void
FetchCache(cache *Cache, pixel_buffer *CompBuffer)
{
@@ -67,7 +68,7 @@ FetchCache(cache *Cache, pixel_buffer *CompBuffer)
}
}
-internal void
+static void
InteractToComp(pixel_buffer *CompBuffer, cache_pool *Cache)
{
int MinX = 0;
@@ -114,15 +115,14 @@ InteractToComp(pixel_buffer *CompBuffer, cache_pool *Cache)
}
}
-internal void
+static void
UncacheFrames(int16 Min, int16 Max, cache_pool *Cache)
{
for (int16 i = Min; i < Max; i++)
Cache->Frame[i].Cached = false;
};
-#if 0
-internal void
+static void
CacheKeyframeAtIndex(uint16 i, struct property_channel *Property, cache_pool *Cache)
{
Assert(Property->NumberOfKeyframes > 0);
@@ -140,7 +140,7 @@ CacheKeyframeAtIndex(uint16 i, struct property_channel *Property, cache_pool *Ca
}
}
-internal void
+static void
SortAndCacheKeyframeAtFrame(uint16 f, struct property_channel *Property, cache_pool *Cache)
{
Assert(Property->NumberOfKeyframes > 0);