├── .github └── workflows │ └── c.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bc_crunch.c ├── bc_crunch.h ├── test ├── arena.h ├── benchmark.c ├── default_font_atlas.h ├── miniz.c ├── miniz.h ├── sokol_time.h ├── stb_dxt.h ├── stb_image.h └── test.c └── textures ├── bc1 ├── Brick_10-512x512.png ├── Brick_11-512x512.png ├── Brick_12-512x512.png ├── Brick_13-512x512.png ├── Brick_14-512x512.png ├── Dirt_12-512x512.png ├── Dirt_13-512x512.png ├── Dirt_14-512x512.png ├── Dirt_15-512x512.png ├── Dirt_16-512x512.png ├── Dirt_17-512x512.png ├── Elements_01-512x512.png ├── Elements_02-512x512.png ├── Elements_03-512x512.png ├── Elements_04-512x512.png ├── Elements_05-512x512.png ├── Elements_06-512x512.png ├── Wood_04-512x512.png ├── Wood_05-512x512.png ├── Wood_06-512x512.png ├── Wood_07-512x512.png ├── kodim01.png ├── kodim02.png ├── kodim03.png ├── kodim04.png ├── kodim05.png └── roof_tiles.png ├── bc3 ├── apps-internet-web-browser.png ├── plant_05.png └── plant_60.png ├── bc4 ├── grey_roof_tiles_02_ao_1k.png ├── grey_roof_tiles_02_disp_1k.png ├── patterned_cobblestone_ao_1k.png ├── patterned_cobblestone_disp_1k.png ├── red_brick_ao_1k.png ├── red_brick_disp_1k.png ├── rough_wood_ao_1k.png └── rough_wood_disp_1k.png └── bc5 ├── grey_roof_tiles_02_nor_dx_1k.png ├── patterned_cobblestone_nor_dx_1k.png ├── red_brick_nor_dx_1k.png └── rough_wood_nor_dx_1k.png /.github/workflows/c.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/.github/workflows/c.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/README.md -------------------------------------------------------------------------------- /bc_crunch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/bc_crunch.c -------------------------------------------------------------------------------- /bc_crunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/bc_crunch.h -------------------------------------------------------------------------------- /test/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/arena.h -------------------------------------------------------------------------------- /test/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/benchmark.c -------------------------------------------------------------------------------- /test/default_font_atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/default_font_atlas.h -------------------------------------------------------------------------------- /test/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/miniz.c -------------------------------------------------------------------------------- /test/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/miniz.h -------------------------------------------------------------------------------- /test/sokol_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/sokol_time.h -------------------------------------------------------------------------------- /test/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/stb_dxt.h -------------------------------------------------------------------------------- /test/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/stb_image.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/test/test.c -------------------------------------------------------------------------------- /textures/bc1/Brick_10-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Brick_10-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Brick_11-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Brick_11-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Brick_12-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Brick_12-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Brick_13-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Brick_13-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Brick_14-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Brick_14-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Dirt_12-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Dirt_12-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Dirt_13-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Dirt_13-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Dirt_14-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Dirt_14-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Dirt_15-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Dirt_15-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Dirt_16-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Dirt_16-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Dirt_17-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Dirt_17-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Elements_01-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Elements_01-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Elements_02-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Elements_02-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Elements_03-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Elements_03-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Elements_04-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Elements_04-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Elements_05-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Elements_05-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Elements_06-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Elements_06-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Wood_04-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Wood_04-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Wood_05-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Wood_05-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Wood_06-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Wood_06-512x512.png -------------------------------------------------------------------------------- /textures/bc1/Wood_07-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/Wood_07-512x512.png -------------------------------------------------------------------------------- /textures/bc1/kodim01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/kodim01.png -------------------------------------------------------------------------------- /textures/bc1/kodim02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/kodim02.png -------------------------------------------------------------------------------- /textures/bc1/kodim03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/kodim03.png -------------------------------------------------------------------------------- /textures/bc1/kodim04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/kodim04.png -------------------------------------------------------------------------------- /textures/bc1/kodim05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/kodim05.png -------------------------------------------------------------------------------- /textures/bc1/roof_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc1/roof_tiles.png -------------------------------------------------------------------------------- /textures/bc3/apps-internet-web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc3/apps-internet-web-browser.png -------------------------------------------------------------------------------- /textures/bc3/plant_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc3/plant_05.png -------------------------------------------------------------------------------- /textures/bc3/plant_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc3/plant_60.png -------------------------------------------------------------------------------- /textures/bc4/grey_roof_tiles_02_ao_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/grey_roof_tiles_02_ao_1k.png -------------------------------------------------------------------------------- /textures/bc4/grey_roof_tiles_02_disp_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/grey_roof_tiles_02_disp_1k.png -------------------------------------------------------------------------------- /textures/bc4/patterned_cobblestone_ao_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/patterned_cobblestone_ao_1k.png -------------------------------------------------------------------------------- /textures/bc4/patterned_cobblestone_disp_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/patterned_cobblestone_disp_1k.png -------------------------------------------------------------------------------- /textures/bc4/red_brick_ao_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/red_brick_ao_1k.png -------------------------------------------------------------------------------- /textures/bc4/red_brick_disp_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/red_brick_disp_1k.png -------------------------------------------------------------------------------- /textures/bc4/rough_wood_ao_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/rough_wood_ao_1k.png -------------------------------------------------------------------------------- /textures/bc4/rough_wood_disp_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc4/rough_wood_disp_1k.png -------------------------------------------------------------------------------- /textures/bc5/grey_roof_tiles_02_nor_dx_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc5/grey_roof_tiles_02_nor_dx_1k.png -------------------------------------------------------------------------------- /textures/bc5/patterned_cobblestone_nor_dx_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc5/patterned_cobblestone_nor_dx_1k.png -------------------------------------------------------------------------------- /textures/bc5/red_brick_nor_dx_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc5/red_brick_nor_dx_1k.png -------------------------------------------------------------------------------- /textures/bc5/rough_wood_nor_dx_1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geolm/bc_crunch/HEAD/textures/bc5/rough_wood_nor_dx_1k.png --------------------------------------------------------------------------------