├── .gitignore ├── CMakeLists.txt ├── main.cpp ├── map ├── CMakeLists.txt ├── cgtutor.txt └── main.c ├── other ├── 2x.raycaster.iwram.cpp ├── 4x.raycaster.iwram.cpp ├── array.raycaster.iwram.cpp ├── cache.raycaster.iwram.cpp ├── fixed.raycaster.iwram.cpp ├── float.raycaster.iwram.cpp ├── max.raycaster.iwram.cpp ├── min.raycaster.iwram.cpp └── optimized.raycaster.iwram.cpp ├── raycaster-0.png ├── raycaster.hpp ├── raycaster.iwram.cpp ├── readme.md └── tex ├── CMakeLists.txt ├── main.c ├── stb_image.h └── wolftextures.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/main.cpp -------------------------------------------------------------------------------- /map/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/map/CMakeLists.txt -------------------------------------------------------------------------------- /map/cgtutor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/map/cgtutor.txt -------------------------------------------------------------------------------- /map/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/map/main.c -------------------------------------------------------------------------------- /other/2x.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/2x.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/4x.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/4x.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/array.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/array.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/cache.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/cache.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/fixed.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/fixed.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/float.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/float.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/max.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/max.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/min.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/min.raycaster.iwram.cpp -------------------------------------------------------------------------------- /other/optimized.raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/other/optimized.raycaster.iwram.cpp -------------------------------------------------------------------------------- /raycaster-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/raycaster-0.png -------------------------------------------------------------------------------- /raycaster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/raycaster.hpp -------------------------------------------------------------------------------- /raycaster.iwram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/raycaster.iwram.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/readme.md -------------------------------------------------------------------------------- /tex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/tex/CMakeLists.txt -------------------------------------------------------------------------------- /tex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/tex/main.c -------------------------------------------------------------------------------- /tex/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/tex/stb_image.h -------------------------------------------------------------------------------- /tex/wolftextures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixjones/gba-raycaster/HEAD/tex/wolftextures.png --------------------------------------------------------------------------------