added 3dengfx into the repo, probably not the correct version for this
authorJohn Tsiombikas <nuclear@member.fsf.org>
Thu, 31 Dec 2020 05:14:26 +0000 (07:14 +0200)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Thu, 31 Dec 2020 05:14:26 +0000 (07:14 +0200)
commit6e23259dbabaeb1711a2a5ca25b9cb421f693759
treeaad7ee62b1b2c5711ea377b10fe1b95d8e86ed6b
parentfe068fa879814784c45e0cb2e65dac489e8f5594
added 3dengfx into the repo, probably not the correct version for this
demo, probably needs fixing.
199 files changed:
.gitignore [new file with mode: 0644]
Makefile
src/3dengfx [deleted symlink]
src/3dengfx/AUTHORS [new file with mode: 0644]
src/3dengfx/COPYING [new file with mode: 0644]
src/3dengfx/Makefile [new file with mode: 0644]
src/3dengfx/libs/lib3ds/atmosphere.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/atmosphere.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/background.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/background.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/camera.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/camera.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/chunk.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/chunk.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/chunktable.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/ease.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/ease.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/file.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/file.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/float.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/float.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/io.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/io.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/light.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/light.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/makefile.part [new file with mode: 0644]
src/3dengfx/libs/lib3ds/material.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/material.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/matrix.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/matrix.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/mesh.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/mesh.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/node.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/node.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/quat.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/quat.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/shadow.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/shadow.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/tcb.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/tcb.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/tracks.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/tracks.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/types.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/vector.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/vector.h [new file with mode: 0644]
src/3dengfx/libs/lib3ds/viewport.c [new file with mode: 0644]
src/3dengfx/libs/lib3ds/viewport.h [new file with mode: 0644]
src/3dengfx/src/3dengfx/3dengfx.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/3denginefx.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/3denginefx.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/3denginefx_types.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/3dscene.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/3dscene.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/camera.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/camera.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/gfxprog.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/gfxprog.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/ggen.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/ggen.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/light.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/light.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/makefile.part [new file with mode: 0644]
src/3dengfx/src/3dengfx/material.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/material.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/mcube_tables.h [new file with mode: 0644]
src/3dengfx/src/3dengfx/object.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/object.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/opengl.h [new file with mode: 0644]
src/3dengfx/src/3dengfx/ply.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/psys.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/psys.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/rend_curve.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/rend_curve.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/sceneloader.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/sceneloader.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/scfield.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/scfield.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/sdrman.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/sdrman.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/sgi_glext.h [new file with mode: 0644]
src/3dengfx/src/3dengfx/shadows.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/shadows.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/teapot.h [new file with mode: 0644]
src/3dengfx/src/3dengfx/texman.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/texman.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/textures.cpp [new file with mode: 0644]
src/3dengfx/src/3dengfx/textures.hpp [new file with mode: 0644]
src/3dengfx/src/3dengfx_config.h [new file with mode: 0644]
src/3dengfx/src/common/byteorder.c [new file with mode: 0644]
src/3dengfx/src/common/byteorder.h [new file with mode: 0644]
src/3dengfx/src/common/config_parser.c [new file with mode: 0644]
src/3dengfx/src/common/config_parser.h [new file with mode: 0644]
src/3dengfx/src/common/err_msg.c [new file with mode: 0644]
src/3dengfx/src/common/err_msg.h [new file with mode: 0644]
src/3dengfx/src/common/fps_counter.c [new file with mode: 0644]
src/3dengfx/src/common/fps_counter.h [new file with mode: 0644]
src/3dengfx/src/common/hashtable.hpp [new file with mode: 0644]
src/3dengfx/src/common/linkedlist.hpp [new file with mode: 0644]
src/3dengfx/src/common/locator.c [new file with mode: 0644]
src/3dengfx/src/common/locator.h [new file with mode: 0644]
src/3dengfx/src/common/makefile.part [new file with mode: 0644]
src/3dengfx/src/common/psort.hpp [new file with mode: 0644]
src/3dengfx/src/common/string_hash.cpp [new file with mode: 0644]
src/3dengfx/src/common/string_hash.hpp [new file with mode: 0644]
src/3dengfx/src/common/timer.c [new file with mode: 0644]
src/3dengfx/src/common/timer.h [new file with mode: 0644]
src/3dengfx/src/common/types.h [new file with mode: 0644]
src/3dengfx/src/dsys/cmd.cpp [new file with mode: 0644]
src/3dengfx/src/dsys/cmd.h [new file with mode: 0644]
src/3dengfx/src/dsys/cmd.hpp [new file with mode: 0644]
src/3dengfx/src/dsys/demosys.hpp [new file with mode: 0644]
src/3dengfx/src/dsys/dsys.cpp [new file with mode: 0644]
src/3dengfx/src/dsys/dsys.hpp [new file with mode: 0644]
src/3dengfx/src/dsys/fx.cpp [new file with mode: 0644]
src/3dengfx/src/dsys/fx.hpp [new file with mode: 0644]
src/3dengfx/src/dsys/makefile.part [new file with mode: 0644]
src/3dengfx/src/dsys/part.cpp [new file with mode: 0644]
src/3dengfx/src/dsys/part.hpp [new file with mode: 0644]
src/3dengfx/src/dsys/scene_part.cpp [new file with mode: 0644]
src/3dengfx/src/dsys/scene_part.hpp [new file with mode: 0644]
src/3dengfx/src/dsys/script.c [new file with mode: 0644]
src/3dengfx/src/dsys/script.h [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt.hpp [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt_glut.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt_gtk.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt_sdl.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt_win32.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/fxwt_x.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/gfx_library.h [new file with mode: 0644]
src/3dengfx/src/fxwt/init.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/init.hpp [new file with mode: 0644]
src/3dengfx/src/fxwt/init_glut.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/init_gtk.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/init_sdl.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/init_win32.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/init_x.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/keysyms.hpp [new file with mode: 0644]
src/3dengfx/src/fxwt/makefile.part [new file with mode: 0644]
src/3dengfx/src/fxwt/text.cpp [new file with mode: 0644]
src/3dengfx/src/fxwt/text.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/3dgeom.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/3dgeom.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/3dgeom.inl [new file with mode: 0644]
src/3dengfx/src/gfx/animation.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/animation.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/animation.inl [new file with mode: 0644]
src/3dengfx/src/gfx/base_cam.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/base_cam.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/bvol.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/bvol.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/color.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/color.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/color.inl [new file with mode: 0644]
src/3dengfx/src/gfx/color_bits.h [new file with mode: 0644]
src/3dengfx/src/gfx/controller.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/controller.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/curves.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/curves.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/image.c [new file with mode: 0644]
src/3dengfx/src/gfx/image.h [new file with mode: 0644]
src/3dengfx/src/gfx/image_jpg.c [new file with mode: 0644]
src/3dengfx/src/gfx/image_png.c [new file with mode: 0644]
src/3dengfx/src/gfx/image_ppm.c [new file with mode: 0644]
src/3dengfx/src/gfx/image_tga.c [new file with mode: 0644]
src/3dengfx/src/gfx/img_manip.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/img_manip.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/makefile.part [new file with mode: 0644]
src/3dengfx/src/gfx/pbuffer.hpp [new file with mode: 0644]
src/3dengfx/src/gfx/timeline.cpp [new file with mode: 0644]
src/3dengfx/src/gfx/timeline.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/makefile.part [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2.inl [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_mat.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_mat.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_mat.inl [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_qdr.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_qdr.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_qua.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_qua.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_ray.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_ray.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_sph.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_sph.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_types.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_vec.cpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_vec.hpp [new file with mode: 0644]
src/3dengfx/src/n3dmath2/n3dmath2_vec.inl [new file with mode: 0644]
src/3dengfx/src/sim/makefile.part [new file with mode: 0644]
src/3dengfx/src/sim/rigid.cpp [new file with mode: 0644]
src/3dengfx/src/sim/rigid.hpp [new file with mode: 0644]
src/3dengfx/src/sim/rope.cpp [new file with mode: 0644]
src/3dengfx/src/sim/rope.hpp [new file with mode: 0644]
src/3dengfx/src/sim/sim.cpp [new file with mode: 0644]
src/3dengfx/src/sim/sim.hpp [new file with mode: 0644]
src/3dengfx/src/sim/spring.cpp [new file with mode: 0644]
src/3dengfx/src/sim/spring.hpp [new file with mode: 0644]