├── .gitignore ├── README.md └── vqfb ├── .gitignore ├── Makefile ├── README.md ├── fire_vqfb.cpp ├── fire_vqfb.h ├── ip.txt ├── main.cpp ├── sample.h ├── simplex_pal.cpp ├── simplex_pal.h ├── simplex_vqfb.cpp ├── simplex_vqfb.h ├── simplexnoise.cpp ├── simplexnoise.h ├── vqfb.cdi ├── vqfb.elf └── vqfb.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/README.md -------------------------------------------------------------------------------- /vqfb/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | debug 3 | release 4 | cdi 5 | iso 6 | 7 | 8 | -------------------------------------------------------------------------------- /vqfb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/Makefile -------------------------------------------------------------------------------- /vqfb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/README.md -------------------------------------------------------------------------------- /vqfb/fire_vqfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/fire_vqfb.cpp -------------------------------------------------------------------------------- /vqfb/fire_vqfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/fire_vqfb.h -------------------------------------------------------------------------------- /vqfb/ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/ip.txt -------------------------------------------------------------------------------- /vqfb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/main.cpp -------------------------------------------------------------------------------- /vqfb/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/sample.h -------------------------------------------------------------------------------- /vqfb/simplex_pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/simplex_pal.cpp -------------------------------------------------------------------------------- /vqfb/simplex_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/simplex_pal.h -------------------------------------------------------------------------------- /vqfb/simplex_vqfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/simplex_vqfb.cpp -------------------------------------------------------------------------------- /vqfb/simplex_vqfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/simplex_vqfb.h -------------------------------------------------------------------------------- /vqfb/simplexnoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/simplexnoise.cpp -------------------------------------------------------------------------------- /vqfb/simplexnoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/simplexnoise.h -------------------------------------------------------------------------------- /vqfb/vqfb.cdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/vqfb.cdi -------------------------------------------------------------------------------- /vqfb/vqfb.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/vqfb.elf -------------------------------------------------------------------------------- /vqfb/vqfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maslevin/dreamcast-samples/HEAD/vqfb/vqfb.h --------------------------------------------------------------------------------