3dgfx code, untested
authorJohn Tsiombikas <nuclear@member.fsf.org>
Sun, 8 Oct 2023 00:24:24 +0000 (03:24 +0300)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Sun, 8 Oct 2023 00:24:24 +0000 (03:24 +0300)
commit1dd4e7bd6552c077457fe187fa86ae68d9d523c1
treec331002d45cca9b225a7de5af5526dda2db48182
parentd47314873cf54024672cabe3746c80c7d4e6e6fa
3dgfx code, untested
34 files changed:
Makefile
src/3dgfx/3dgfx.c [new file with mode: 0644]
src/3dgfx/3dgfx.h [new file with mode: 0644]
src/3dgfx/mesh.c [new file with mode: 0644]
src/3dgfx/mesh.h [new file with mode: 0644]
src/3dgfx/polyclip.c [new file with mode: 0644]
src/3dgfx/polyclip.h [new file with mode: 0644]
src/3dgfx/polyfill.c [new file with mode: 0644]
src/3dgfx/polyfill.h [new file with mode: 0644]
src/3dgfx/polytmpl.h [new file with mode: 0644]
src/cgmath/cgmath.h [new file with mode: 0644]
src/cgmath/cgmmat.inl [new file with mode: 0644]
src/cgmath/cgmmisc.inl [new file with mode: 0644]
src/cgmath/cgmquat.inl [new file with mode: 0644]
src/cgmath/cgmray.inl [new file with mode: 0644]
src/cgmath/cgmvec3.inl [new file with mode: 0644]
src/cgmath/cgmvec4.inl [new file with mode: 0644]
src/colormgr.c [new file with mode: 0644]
src/colormgr.h [new file with mode: 0644]
src/dynarr.c [new file with mode: 0644]
src/dynarr.h [new file with mode: 0644]
src/game.c
src/gfxutil.c [new file with mode: 0644]
src/gfxutil.h [new file with mode: 0644]
src/libc/math.h
src/libc/stdint.h [new file with mode: 0644]
src/libc/string.c
src/libc/string.h
src/rbtree.c [new file with mode: 0644]
src/rbtree.h [new file with mode: 0644]
src/util.c [new file with mode: 0644]
src/util.h [new file with mode: 0644]
src/vga.h [new file with mode: 0644]
src/vga_s.asm [new file with mode: 0644]