mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Compression support
This commit is contained in:
parent
7e1b2c2469
commit
fbb622e956
4 changed files with 11 additions and 2 deletions
|
@ -1930,6 +1930,7 @@ copy /y "$(OutDir)$(TargetName).lib" "$(SolutionDir)\BeefLibs\Beefy2D\dist\"</Co
|
||||||
<ClCompile Include="util\BSpline.cpp" />
|
<ClCompile Include="util\BSpline.cpp" />
|
||||||
<ClCompile Include="util\CatmullRom.cpp" />
|
<ClCompile Include="util\CatmullRom.cpp" />
|
||||||
<ClCompile Include="util\ChunkedDataBuffer.cpp" />
|
<ClCompile Include="util\ChunkedDataBuffer.cpp" />
|
||||||
|
<ClCompile Include="util\Compress.cpp" />
|
||||||
<ClCompile Include="util\CubicFuncSpline.cpp" />
|
<ClCompile Include="util\CubicFuncSpline.cpp" />
|
||||||
<ClCompile Include="util\CubicSpline.cpp" />
|
<ClCompile Include="util\CubicSpline.cpp" />
|
||||||
<ClCompile Include="util\Hash.cpp" />
|
<ClCompile Include="util\Hash.cpp" />
|
||||||
|
@ -2157,6 +2158,7 @@ copy /y "$(OutDir)$(TargetName).lib" "$(SolutionDir)\BeefLibs\Beefy2D\dist\"</Co
|
||||||
<ClInclude Include="util\CatmullRom.h" />
|
<ClInclude Include="util\CatmullRom.h" />
|
||||||
<ClInclude Include="Util\ChunkedDataBuffer.h" />
|
<ClInclude Include="Util\ChunkedDataBuffer.h" />
|
||||||
<ClInclude Include="util\ChunkedVector.h" />
|
<ClInclude Include="util\ChunkedVector.h" />
|
||||||
|
<ClInclude Include="util\Compress.h" />
|
||||||
<ClInclude Include="util\CritSect.h" />
|
<ClInclude Include="util\CritSect.h" />
|
||||||
<ClInclude Include="util\CubicFuncSpline.h" />
|
<ClInclude Include="util\CubicFuncSpline.h" />
|
||||||
<ClInclude Include="util\CubicSpline.h" />
|
<ClInclude Include="util\CubicSpline.h" />
|
||||||
|
|
|
@ -719,6 +719,9 @@
|
||||||
<ClCompile Include="util\Sphere.cpp">
|
<ClCompile Include="util\Sphere.cpp">
|
||||||
<Filter>src\util</Filter>
|
<Filter>src\util</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="util\Compress.cpp">
|
||||||
|
<Filter>src\util</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="Common.h">
|
<ClInclude Include="Common.h">
|
||||||
|
@ -1099,6 +1102,9 @@
|
||||||
<ClInclude Include="util\Sphere.h">
|
<ClInclude Include="util\Sphere.h">
|
||||||
<Filter>src\util</Filter>
|
<Filter>src\util</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="util\Compress.h">
|
||||||
|
<Filter>src\util</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<CustomBuild Include="third_party\libffi\i686-pc-cygwin\src\x86\win32.asm">
|
<CustomBuild Include="third_party\libffi\i686-pc-cygwin\src\x86\win32.asm">
|
||||||
|
|
|
@ -278,6 +278,7 @@ file(GLOB SRC_FILES
|
||||||
util/BSpline.cpp
|
util/BSpline.cpp
|
||||||
util/CatmullRom.cpp
|
util/CatmullRom.cpp
|
||||||
util/ChunkedDataBuffer.cpp
|
util/ChunkedDataBuffer.cpp
|
||||||
|
util/Compress.cpp
|
||||||
util/CubicFuncSpline.cpp
|
util/CubicFuncSpline.cpp
|
||||||
util/CubicSpline.cpp
|
util/CubicSpline.cpp
|
||||||
util/FileEnumerator.cpp
|
util/FileEnumerator.cpp
|
||||||
|
|
|
@ -440,7 +440,7 @@ void ContiguousHeap::DebugDump()
|
||||||
for (auto idx : mFreeList)
|
for (auto idx : mFreeList)
|
||||||
{
|
{
|
||||||
auto block = CH_REL_TO_ABS(idx);
|
auto block = CH_REL_TO_ABS(idx);
|
||||||
char* kind = "??";
|
const char* kind = "??";
|
||||||
if (block->mKind == ChBlockKind_Unused)
|
if (block->mKind == ChBlockKind_Unused)
|
||||||
kind = "Unused";
|
kind = "Unused";
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue