├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── Makefile.blocksds ├── changelog.rst ├── docs ├── dual-screen-3d-modes.rst └── images │ ├── ne_dual_3d.png │ ├── ne_dual_3d_dma.png │ ├── ne_dual_3d_fb.png │ └── ne_dual_3d_modes.dia ├── documentation ├── .gitignore ├── Doxyfile └── generate.sh ├── examples ├── .gitignore ├── 2d_system │ ├── Makefile │ ├── assets.sh │ ├── gui │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── button.grit │ │ │ ├── button.png │ │ │ ├── empty.grit │ │ │ ├── empty.png │ │ │ ├── true.grit │ │ │ └── true.png │ │ └── source │ │ │ └── main.c │ ├── quad_texture_sizes │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── s16.grit │ │ │ ├── s16.png │ │ │ ├── s256.grit │ │ │ ├── s256.png │ │ │ ├── s64.grit │ │ │ ├── s64.png │ │ │ ├── s8.grit │ │ │ └── s8.png │ │ └── source │ │ │ └── main.c │ ├── quads │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ └── sprites │ │ ├── Makefile │ │ ├── graphics │ │ ├── assets.grit │ │ ├── assets.png │ │ ├── assets.txt │ │ ├── icon.grit │ │ └── icon.png │ │ └── source │ │ └── main.c ├── Makefile ├── Makefile.example ├── assets.sh ├── assets │ ├── a3pal32.png │ ├── a5pal8.png │ ├── cube.obj │ ├── robot │ │ ├── Robot.md5mesh │ │ ├── Walk.md5anim │ │ ├── Wave.md5anim │ │ ├── robot.blend │ │ └── robot.obj │ ├── sphere.obj │ ├── sphere_vertex_colors.obj │ ├── teapot.obj │ └── teapot.png ├── effects │ ├── Makefile │ ├── assets.sh │ ├── fog │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── sphere.bin │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ └── source │ │ │ └── main.c │ ├── screen_effects │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.c │ ├── screen_effects_dual_3d_dma │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ ├── sphere.bin │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.c │ ├── shading_alpha_outlining │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── teapot.bin │ │ ├── graphics │ │ │ ├── teapot.grit │ │ │ └── teapot.png │ │ └── source │ │ │ └── main.c │ ├── specular_material │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── teapot.bin │ │ ├── graphics │ │ │ ├── teapot.grit │ │ │ └── teapot.png │ │ └── source │ │ │ └── main.c │ └── volumetric_shadow │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ └── teapot.bin │ │ ├── graphics │ │ ├── teapot.grit │ │ └── teapot.png │ │ └── source │ │ └── main.c ├── loading │ ├── Makefile │ ├── animated_model │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ ├── robot_dsm.bin │ │ │ ├── robot_walk_dsa.bin │ │ │ └── robot_wave_dsa.bin │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ └── source │ │ │ └── main.c │ ├── assets.sh │ ├── assign_transform_matrix │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── sphere.bin │ │ └── source │ │ │ └── main.c │ ├── clone_models │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── sphere.bin │ │ └── source │ │ │ └── main.c │ ├── compressed_texture │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── assets │ │ │ ├── grill.png │ │ │ ├── grill.rst │ │ │ ├── landscape.jpg │ │ │ └── landscape.rst │ │ ├── data │ │ │ ├── grill_idx.bin │ │ │ ├── grill_pal.bin │ │ │ ├── grill_tex.bin │ │ │ ├── landscape_idx.bin │ │ │ ├── landscape_pal.bin │ │ │ └── landscape_tex.bin │ │ └── source │ │ │ └── main.c │ ├── filesystem_animated_model │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ ├── nitrofiles │ │ │ ├── robot.dsm │ │ │ ├── robot_wave.dsa │ │ │ └── texture.img.bin │ │ └── source │ │ │ └── main.c │ ├── filesystem_multiple_textures │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── graphics │ │ │ ├── spiral_blue_pal32.grit │ │ │ ├── spiral_blue_pal32.png │ │ │ ├── spiral_red_pal32.grit │ │ │ └── spiral_red_pal32.png │ │ ├── nitrofiles │ │ │ ├── cube.bin │ │ │ ├── spiral_blue_pal32.img.bin │ │ │ ├── spiral_blue_pal32.pal.bin │ │ │ ├── spiral_red_pal32.img.bin │ │ │ └── spiral_red_pal32.pal.bin │ │ └── source │ │ │ └── main.c │ ├── filesystem_simple_model │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ ├── nitrofiles │ │ │ ├── robot.bin │ │ │ └── texture.img.bin │ │ └── source │ │ │ └── main.c │ ├── filesystem_textures_grf │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── assets │ │ │ ├── a1rgb5.png │ │ │ └── a3pal32.png │ │ ├── nitrofiles │ │ │ ├── a1rgb5_png.grf │ │ │ └── a3pal32_png.grf │ │ └── source │ │ │ └── main.c │ ├── incomplete_texture │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── a3pal32.grit │ │ │ ├── a3pal32.png │ │ │ ├── pal4.grit │ │ │ └── pal4.png │ │ └── source │ │ │ └── main.c │ ├── model_with_vertex_color │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── sphere_vertex_colors.bin │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ └── source │ │ │ └── main.c │ ├── multiple_models │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── sphere.bin │ │ └── source │ │ │ └── main.c │ ├── paletted_texture │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── a3pal32.grit │ │ │ ├── a3pal32.png │ │ │ ├── a5pal8.grit │ │ │ └── a5pal8.png │ │ └── source │ │ │ └── main.c │ └── simple_model │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ └── robot.bin │ │ ├── graphics │ │ ├── texture.grit │ │ └── texture.png │ │ └── source │ │ └── main.c ├── other │ ├── Makefile │ ├── assets.sh │ ├── blended_animations │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ ├── robot_dsm.bin │ │ │ ├── robot_walk_dsa.bin │ │ │ └── robot_wave_dsa.bin │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ └── source │ │ │ └── main.c │ ├── clear_bmp │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── assets │ │ │ └── depth.png │ │ ├── data │ │ │ ├── cube.bin │ │ │ └── depth_tex.bin │ │ ├── graphics │ │ │ ├── background.grit │ │ │ └── background.png │ │ └── source │ │ │ └── main.c │ ├── dual_3d_dma_low_framerate │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ ├── sphere.bin │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.c │ ├── dual_3d_modes │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ ├── sphere.bin │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.c │ ├── dual_3d_modes_args │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ ├── sphere.bin │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.c │ ├── error_handling │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── fps_counter │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── teapot.bin │ │ ├── graphics │ │ │ ├── teapot.grit │ │ │ └── teapot.png │ │ └── source │ │ │ └── main.c │ ├── free_camera │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── robot.bin │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ └── source │ │ │ └── main.c │ ├── polygon_colored │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── polygon_textured │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── texture.grit │ │ │ └── texture.png │ │ └── source │ │ │ └── main.c │ ├── stylus_texture_drawing_rgb256 │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── pal256.grit │ │ │ └── pal256.png │ │ └── source │ │ │ └── main.c │ ├── stylus_texture_drawing_rgba │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── a1rgb5.grit │ │ │ └── a1rgb5.png │ │ └── source │ │ │ └── main.c │ ├── swap_3d_dual_screen │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── a3pal32.grit │ │ │ ├── a3pal32.png │ │ │ ├── a5pal8.grit │ │ │ └── a5pal8.png │ │ └── source │ │ │ └── main.c │ ├── swap_3d_single_screen │ │ ├── Makefile │ │ ├── graphics │ │ │ ├── a5pal8.grit │ │ │ └── a5pal8.png │ │ └── source │ │ │ └── main.c │ └── touch_test │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ └── sphere.bin │ │ └── source │ │ └── main.c ├── physics │ ├── Makefile │ ├── assets.sh │ ├── basic │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── cube.bin │ │ └── source │ │ │ └── main.c │ ├── box_tower │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ │ └── cube.bin │ │ └── source │ │ │ └── main.c │ └── collision_actions │ │ ├── Makefile │ │ ├── assets.sh │ │ ├── data │ │ └── cube.bin │ │ └── source │ │ └── main.c ├── templates │ ├── 3d_dual_screen │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── 3d_single_screen │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── Makefile │ └── using_nflib │ │ ├── Makefile │ │ ├── nitrofiles │ │ ├── bg │ │ │ ├── bg0.img │ │ │ ├── bg0.map │ │ │ ├── bg0.pal │ │ │ ├── bg1.img │ │ │ ├── bg1.map │ │ │ ├── bg1.pal │ │ │ ├── bg3.img │ │ │ ├── bg3.map │ │ │ └── bg3.pal │ │ ├── fnt │ │ │ ├── default.fnt │ │ │ └── default.pal │ │ ├── robot.dsm │ │ ├── robot_wave.dsa │ │ ├── sprite │ │ │ ├── personaje.img │ │ │ └── personaje.pal │ │ └── texture_tex.bin │ │ └── source │ │ └── main.c └── text │ ├── Makefile │ ├── font_from_nitrofs │ ├── .gitignore │ ├── build.py │ ├── fonts │ │ ├── font.bmfc │ │ ├── font.fnt │ │ ├── font_16.grit │ │ ├── font_16.png │ │ ├── font_256.grit │ │ └── font_256.png │ ├── readme.md │ └── source │ │ └── main.c │ ├── font_from_ram │ ├── Makefile │ ├── data │ │ └── font_fnt.bin │ ├── font.bmfc │ ├── graphics │ │ ├── font_16.grit │ │ ├── font_16.png │ │ ├── font_256.grit │ │ └── font_256.png │ └── source │ │ └── main.c │ └── monospaced_text │ ├── Makefile │ ├── graphics │ ├── text.grit │ ├── text.png │ ├── text2.grit │ └── text2.png │ └── source │ └── main.c ├── include ├── NE2D.h ├── NEAlloc.h ├── NEAnimation.h ├── NECamera.h ├── NEDisplayList.h ├── NEFAT.h ├── NEFormats.h ├── NEGUI.h ├── NEGeneral.h ├── NEMain.h ├── NEModel.h ├── NEPalette.h ├── NEPhysics.h ├── NEPolygon.h ├── NERichText.h ├── NEText.h └── NETexture.h ├── licenses ├── cc0-1.0.txt └── mit.txt ├── readme.rst ├── screenshots ├── animated_model.png ├── box_tower.png ├── fog.png ├── screen_effects.png ├── shadow_volume.png ├── specular_material.png ├── sprites.png └── text.png ├── source ├── NE2D.c ├── NEAlloc.c ├── NEAnimation.c ├── NECamera.c ├── NEDisplayList.c ├── NEFAT.c ├── NEFormats.c ├── NEGUI.c ├── NEGeneral.c ├── NEMath.h ├── NEModel.c ├── NEPalette.c ├── NEPhysics.c ├── NEPolygon.c ├── NERichText.c ├── NEText.c ├── NETexture.c ├── dsma │ ├── dsma.c │ └── dsma.h └── libdsf │ ├── dsf.c │ └── dsf.h ├── tests ├── 3d_modes_lcd_depth │ ├── Makefile │ └── source │ │ └── main.c ├── allocator │ ├── Makefile │ └── source │ │ └── main.c └── clone_materials │ ├── Makefile │ ├── graphics │ ├── a3pal32.grit │ └── a3pal32.png │ └── source │ └── main.c └── tools ├── img2ds ├── img2ds.py ├── palette.py ├── readme.rst └── requirements.txt ├── md5_to_dsma ├── display_list.py └── md5_to_dsma.py ├── obj2dl ├── display_list.py └── obj2dl.py └── readme.rst /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.blocksds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/Makefile.blocksds -------------------------------------------------------------------------------- /changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/changelog.rst -------------------------------------------------------------------------------- /docs/dual-screen-3d-modes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/docs/dual-screen-3d-modes.rst -------------------------------------------------------------------------------- /docs/images/ne_dual_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/docs/images/ne_dual_3d.png -------------------------------------------------------------------------------- /docs/images/ne_dual_3d_dma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/docs/images/ne_dual_3d_dma.png -------------------------------------------------------------------------------- /docs/images/ne_dual_3d_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/docs/images/ne_dual_3d_fb.png -------------------------------------------------------------------------------- /docs/images/ne_dual_3d_modes.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/docs/images/ne_dual_3d_modes.dia -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | -------------------------------------------------------------------------------- /documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/documentation/Doxyfile -------------------------------------------------------------------------------- /documentation/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doxygen Doxyfile 3 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/2d_system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/Makefile -------------------------------------------------------------------------------- /examples/2d_system/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/assets.sh -------------------------------------------------------------------------------- /examples/2d_system/gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/Makefile -------------------------------------------------------------------------------- /examples/2d_system/gui/graphics/button.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/graphics/button.grit -------------------------------------------------------------------------------- /examples/2d_system/gui/graphics/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/graphics/button.png -------------------------------------------------------------------------------- /examples/2d_system/gui/graphics/empty.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/graphics/empty.grit -------------------------------------------------------------------------------- /examples/2d_system/gui/graphics/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/graphics/empty.png -------------------------------------------------------------------------------- /examples/2d_system/gui/graphics/true.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/graphics/true.grit -------------------------------------------------------------------------------- /examples/2d_system/gui/graphics/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/graphics/true.png -------------------------------------------------------------------------------- /examples/2d_system/gui/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/gui/source/main.c -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/Makefile -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s16.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s16.grit -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s16.png -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s256.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s256.grit -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s256.png -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s64.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s64.grit -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s64.png -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s8.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s8.grit -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/graphics/s8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/graphics/s8.png -------------------------------------------------------------------------------- /examples/2d_system/quad_texture_sizes/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quad_texture_sizes/source/main.c -------------------------------------------------------------------------------- /examples/2d_system/quads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quads/Makefile -------------------------------------------------------------------------------- /examples/2d_system/quads/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/quads/source/main.c -------------------------------------------------------------------------------- /examples/2d_system/sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/Makefile -------------------------------------------------------------------------------- /examples/2d_system/sprites/graphics/assets.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/graphics/assets.grit -------------------------------------------------------------------------------- /examples/2d_system/sprites/graphics/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/graphics/assets.png -------------------------------------------------------------------------------- /examples/2d_system/sprites/graphics/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/graphics/assets.txt -------------------------------------------------------------------------------- /examples/2d_system/sprites/graphics/icon.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/graphics/icon.grit -------------------------------------------------------------------------------- /examples/2d_system/sprites/graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/graphics/icon.png -------------------------------------------------------------------------------- /examples/2d_system/sprites/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/2d_system/sprites/source/main.c -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/Makefile.example -------------------------------------------------------------------------------- /examples/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets.sh -------------------------------------------------------------------------------- /examples/assets/a3pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/a3pal32.png -------------------------------------------------------------------------------- /examples/assets/a5pal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/a5pal8.png -------------------------------------------------------------------------------- /examples/assets/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/cube.obj -------------------------------------------------------------------------------- /examples/assets/robot/Robot.md5mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/robot/Robot.md5mesh -------------------------------------------------------------------------------- /examples/assets/robot/Walk.md5anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/robot/Walk.md5anim -------------------------------------------------------------------------------- /examples/assets/robot/Wave.md5anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/robot/Wave.md5anim -------------------------------------------------------------------------------- /examples/assets/robot/robot.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/robot/robot.blend -------------------------------------------------------------------------------- /examples/assets/robot/robot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/robot/robot.obj -------------------------------------------------------------------------------- /examples/assets/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/sphere.obj -------------------------------------------------------------------------------- /examples/assets/sphere_vertex_colors.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/sphere_vertex_colors.obj -------------------------------------------------------------------------------- /examples/assets/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/teapot.obj -------------------------------------------------------------------------------- /examples/assets/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/assets/teapot.png -------------------------------------------------------------------------------- /examples/effects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/Makefile -------------------------------------------------------------------------------- /examples/effects/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/assets.sh -------------------------------------------------------------------------------- /examples/effects/fog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/fog/Makefile -------------------------------------------------------------------------------- /examples/effects/fog/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/fog/assets.sh -------------------------------------------------------------------------------- /examples/effects/fog/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/fog/data/sphere.bin -------------------------------------------------------------------------------- /examples/effects/fog/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/fog/graphics/texture.grit -------------------------------------------------------------------------------- /examples/effects/fog/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/fog/graphics/texture.png -------------------------------------------------------------------------------- /examples/effects/fog/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/fog/source/main.c -------------------------------------------------------------------------------- /examples/effects/screen_effects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects/Makefile -------------------------------------------------------------------------------- /examples/effects/screen_effects/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects/assets.sh -------------------------------------------------------------------------------- /examples/effects/screen_effects/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects/data/teapot.bin -------------------------------------------------------------------------------- /examples/effects/screen_effects/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects/source/main.c -------------------------------------------------------------------------------- /examples/effects/screen_effects_dual_3d_dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects_dual_3d_dma/Makefile -------------------------------------------------------------------------------- /examples/effects/screen_effects_dual_3d_dma/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects_dual_3d_dma/assets.sh -------------------------------------------------------------------------------- /examples/effects/screen_effects_dual_3d_dma/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects_dual_3d_dma/data/sphere.bin -------------------------------------------------------------------------------- /examples/effects/screen_effects_dual_3d_dma/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects_dual_3d_dma/data/teapot.bin -------------------------------------------------------------------------------- /examples/effects/screen_effects_dual_3d_dma/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/screen_effects_dual_3d_dma/source/main.c -------------------------------------------------------------------------------- /examples/effects/shading_alpha_outlining/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/shading_alpha_outlining/Makefile -------------------------------------------------------------------------------- /examples/effects/shading_alpha_outlining/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/shading_alpha_outlining/assets.sh -------------------------------------------------------------------------------- /examples/effects/shading_alpha_outlining/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/shading_alpha_outlining/data/teapot.bin -------------------------------------------------------------------------------- /examples/effects/shading_alpha_outlining/graphics/teapot.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/shading_alpha_outlining/graphics/teapot.grit -------------------------------------------------------------------------------- /examples/effects/shading_alpha_outlining/graphics/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/shading_alpha_outlining/graphics/teapot.png -------------------------------------------------------------------------------- /examples/effects/shading_alpha_outlining/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/shading_alpha_outlining/source/main.c -------------------------------------------------------------------------------- /examples/effects/specular_material/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/specular_material/Makefile -------------------------------------------------------------------------------- /examples/effects/specular_material/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/specular_material/assets.sh -------------------------------------------------------------------------------- /examples/effects/specular_material/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/specular_material/data/teapot.bin -------------------------------------------------------------------------------- /examples/effects/specular_material/graphics/teapot.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/specular_material/graphics/teapot.grit -------------------------------------------------------------------------------- /examples/effects/specular_material/graphics/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/specular_material/graphics/teapot.png -------------------------------------------------------------------------------- /examples/effects/specular_material/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/specular_material/source/main.c -------------------------------------------------------------------------------- /examples/effects/volumetric_shadow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/volumetric_shadow/Makefile -------------------------------------------------------------------------------- /examples/effects/volumetric_shadow/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/volumetric_shadow/assets.sh -------------------------------------------------------------------------------- /examples/effects/volumetric_shadow/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/volumetric_shadow/data/teapot.bin -------------------------------------------------------------------------------- /examples/effects/volumetric_shadow/graphics/teapot.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/volumetric_shadow/graphics/teapot.grit -------------------------------------------------------------------------------- /examples/effects/volumetric_shadow/graphics/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/volumetric_shadow/graphics/teapot.png -------------------------------------------------------------------------------- /examples/effects/volumetric_shadow/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/effects/volumetric_shadow/source/main.c -------------------------------------------------------------------------------- /examples/loading/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/Makefile -------------------------------------------------------------------------------- /examples/loading/animated_model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/Makefile -------------------------------------------------------------------------------- /examples/loading/animated_model/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/assets.sh -------------------------------------------------------------------------------- /examples/loading/animated_model/data/robot_dsm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/data/robot_dsm.bin -------------------------------------------------------------------------------- /examples/loading/animated_model/data/robot_walk_dsa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/data/robot_walk_dsa.bin -------------------------------------------------------------------------------- /examples/loading/animated_model/data/robot_wave_dsa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/data/robot_wave_dsa.bin -------------------------------------------------------------------------------- /examples/loading/animated_model/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/graphics/texture.grit -------------------------------------------------------------------------------- /examples/loading/animated_model/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/graphics/texture.png -------------------------------------------------------------------------------- /examples/loading/animated_model/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/animated_model/source/main.c -------------------------------------------------------------------------------- /examples/loading/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/assets.sh -------------------------------------------------------------------------------- /examples/loading/assign_transform_matrix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/assign_transform_matrix/Makefile -------------------------------------------------------------------------------- /examples/loading/assign_transform_matrix/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/assign_transform_matrix/assets.sh -------------------------------------------------------------------------------- /examples/loading/assign_transform_matrix/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/assign_transform_matrix/data/sphere.bin -------------------------------------------------------------------------------- /examples/loading/assign_transform_matrix/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/assign_transform_matrix/source/main.c -------------------------------------------------------------------------------- /examples/loading/clone_models/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/clone_models/Makefile -------------------------------------------------------------------------------- /examples/loading/clone_models/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/clone_models/assets.sh -------------------------------------------------------------------------------- /examples/loading/clone_models/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/clone_models/data/sphere.bin -------------------------------------------------------------------------------- /examples/loading/clone_models/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/clone_models/source/main.c -------------------------------------------------------------------------------- /examples/loading/compressed_texture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/Makefile -------------------------------------------------------------------------------- /examples/loading/compressed_texture/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/assets.sh -------------------------------------------------------------------------------- /examples/loading/compressed_texture/assets/grill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/assets/grill.png -------------------------------------------------------------------------------- /examples/loading/compressed_texture/assets/grill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/assets/grill.rst -------------------------------------------------------------------------------- /examples/loading/compressed_texture/assets/landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/assets/landscape.jpg -------------------------------------------------------------------------------- /examples/loading/compressed_texture/assets/landscape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/assets/landscape.rst -------------------------------------------------------------------------------- /examples/loading/compressed_texture/data/grill_idx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/data/grill_idx.bin -------------------------------------------------------------------------------- /examples/loading/compressed_texture/data/grill_pal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/data/grill_pal.bin -------------------------------------------------------------------------------- /examples/loading/compressed_texture/data/grill_tex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/data/grill_tex.bin -------------------------------------------------------------------------------- /examples/loading/compressed_texture/data/landscape_idx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/data/landscape_idx.bin -------------------------------------------------------------------------------- /examples/loading/compressed_texture/data/landscape_pal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/data/landscape_pal.bin -------------------------------------------------------------------------------- /examples/loading/compressed_texture/data/landscape_tex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/data/landscape_tex.bin -------------------------------------------------------------------------------- /examples/loading/compressed_texture/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/compressed_texture/source/main.c -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/Makefile -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/assets.sh -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/graphics/texture.grit -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/graphics/texture.png -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/nitrofiles/robot.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/nitrofiles/robot.dsm -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/nitrofiles/robot_wave.dsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/nitrofiles/robot_wave.dsa -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/nitrofiles/texture.img.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/nitrofiles/texture.img.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_animated_model/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_animated_model/source/main.c -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/Makefile -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/assets.sh -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/graphics/spiral_blue_pal32.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/graphics/spiral_blue_pal32.grit -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/graphics/spiral_blue_pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/graphics/spiral_blue_pal32.png -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/graphics/spiral_red_pal32.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/graphics/spiral_red_pal32.grit -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/graphics/spiral_red_pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/graphics/spiral_red_pal32.png -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/nitrofiles/cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/nitrofiles/cube.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/nitrofiles/spiral_blue_pal32.img.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/nitrofiles/spiral_blue_pal32.img.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/nitrofiles/spiral_blue_pal32.pal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/nitrofiles/spiral_blue_pal32.pal.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/nitrofiles/spiral_red_pal32.img.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/nitrofiles/spiral_red_pal32.img.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/nitrofiles/spiral_red_pal32.pal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/nitrofiles/spiral_red_pal32.pal.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_multiple_textures/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_multiple_textures/source/main.c -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/Makefile -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/assets.sh -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/graphics/texture.grit -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/graphics/texture.png -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/nitrofiles/robot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/nitrofiles/robot.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/nitrofiles/texture.img.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/nitrofiles/texture.img.bin -------------------------------------------------------------------------------- /examples/loading/filesystem_simple_model/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_simple_model/source/main.c -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/Makefile -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/assets.sh -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/assets/a1rgb5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/assets/a1rgb5.png -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/assets/a3pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/assets/a3pal32.png -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/nitrofiles/a1rgb5_png.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/nitrofiles/a1rgb5_png.grf -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/nitrofiles/a3pal32_png.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/nitrofiles/a3pal32_png.grf -------------------------------------------------------------------------------- /examples/loading/filesystem_textures_grf/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/filesystem_textures_grf/source/main.c -------------------------------------------------------------------------------- /examples/loading/incomplete_texture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/incomplete_texture/Makefile -------------------------------------------------------------------------------- /examples/loading/incomplete_texture/graphics/a3pal32.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/incomplete_texture/graphics/a3pal32.grit -------------------------------------------------------------------------------- /examples/loading/incomplete_texture/graphics/a3pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/incomplete_texture/graphics/a3pal32.png -------------------------------------------------------------------------------- /examples/loading/incomplete_texture/graphics/pal4.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/incomplete_texture/graphics/pal4.grit -------------------------------------------------------------------------------- /examples/loading/incomplete_texture/graphics/pal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/incomplete_texture/graphics/pal4.png -------------------------------------------------------------------------------- /examples/loading/incomplete_texture/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/incomplete_texture/source/main.c -------------------------------------------------------------------------------- /examples/loading/model_with_vertex_color/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/model_with_vertex_color/Makefile -------------------------------------------------------------------------------- /examples/loading/model_with_vertex_color/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/model_with_vertex_color/assets.sh -------------------------------------------------------------------------------- /examples/loading/model_with_vertex_color/data/sphere_vertex_colors.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/model_with_vertex_color/data/sphere_vertex_colors.bin -------------------------------------------------------------------------------- /examples/loading/model_with_vertex_color/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/model_with_vertex_color/graphics/texture.grit -------------------------------------------------------------------------------- /examples/loading/model_with_vertex_color/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/model_with_vertex_color/graphics/texture.png -------------------------------------------------------------------------------- /examples/loading/model_with_vertex_color/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/model_with_vertex_color/source/main.c -------------------------------------------------------------------------------- /examples/loading/multiple_models/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/multiple_models/Makefile -------------------------------------------------------------------------------- /examples/loading/multiple_models/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/multiple_models/assets.sh -------------------------------------------------------------------------------- /examples/loading/multiple_models/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/multiple_models/data/sphere.bin -------------------------------------------------------------------------------- /examples/loading/multiple_models/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/multiple_models/source/main.c -------------------------------------------------------------------------------- /examples/loading/paletted_texture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/paletted_texture/Makefile -------------------------------------------------------------------------------- /examples/loading/paletted_texture/graphics/a3pal32.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/paletted_texture/graphics/a3pal32.grit -------------------------------------------------------------------------------- /examples/loading/paletted_texture/graphics/a3pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/paletted_texture/graphics/a3pal32.png -------------------------------------------------------------------------------- /examples/loading/paletted_texture/graphics/a5pal8.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/paletted_texture/graphics/a5pal8.grit -------------------------------------------------------------------------------- /examples/loading/paletted_texture/graphics/a5pal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/paletted_texture/graphics/a5pal8.png -------------------------------------------------------------------------------- /examples/loading/paletted_texture/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/paletted_texture/source/main.c -------------------------------------------------------------------------------- /examples/loading/simple_model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/simple_model/Makefile -------------------------------------------------------------------------------- /examples/loading/simple_model/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/simple_model/assets.sh -------------------------------------------------------------------------------- /examples/loading/simple_model/data/robot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/simple_model/data/robot.bin -------------------------------------------------------------------------------- /examples/loading/simple_model/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/simple_model/graphics/texture.grit -------------------------------------------------------------------------------- /examples/loading/simple_model/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/simple_model/graphics/texture.png -------------------------------------------------------------------------------- /examples/loading/simple_model/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/loading/simple_model/source/main.c -------------------------------------------------------------------------------- /examples/other/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/Makefile -------------------------------------------------------------------------------- /examples/other/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/assets.sh -------------------------------------------------------------------------------- /examples/other/blended_animations/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/Makefile -------------------------------------------------------------------------------- /examples/other/blended_animations/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/assets.sh -------------------------------------------------------------------------------- /examples/other/blended_animations/data/robot_dsm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/data/robot_dsm.bin -------------------------------------------------------------------------------- /examples/other/blended_animations/data/robot_walk_dsa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/data/robot_walk_dsa.bin -------------------------------------------------------------------------------- /examples/other/blended_animations/data/robot_wave_dsa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/data/robot_wave_dsa.bin -------------------------------------------------------------------------------- /examples/other/blended_animations/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/graphics/texture.grit -------------------------------------------------------------------------------- /examples/other/blended_animations/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/graphics/texture.png -------------------------------------------------------------------------------- /examples/other/blended_animations/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/blended_animations/source/main.c -------------------------------------------------------------------------------- /examples/other/clear_bmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/Makefile -------------------------------------------------------------------------------- /examples/other/clear_bmp/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/assets.sh -------------------------------------------------------------------------------- /examples/other/clear_bmp/assets/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/assets/depth.png -------------------------------------------------------------------------------- /examples/other/clear_bmp/data/cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/data/cube.bin -------------------------------------------------------------------------------- /examples/other/clear_bmp/data/depth_tex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/data/depth_tex.bin -------------------------------------------------------------------------------- /examples/other/clear_bmp/graphics/background.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/graphics/background.grit -------------------------------------------------------------------------------- /examples/other/clear_bmp/graphics/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/graphics/background.png -------------------------------------------------------------------------------- /examples/other/clear_bmp/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/clear_bmp/source/main.c -------------------------------------------------------------------------------- /examples/other/dual_3d_dma_low_framerate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_dma_low_framerate/Makefile -------------------------------------------------------------------------------- /examples/other/dual_3d_dma_low_framerate/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_dma_low_framerate/assets.sh -------------------------------------------------------------------------------- /examples/other/dual_3d_dma_low_framerate/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_dma_low_framerate/data/sphere.bin -------------------------------------------------------------------------------- /examples/other/dual_3d_dma_low_framerate/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_dma_low_framerate/data/teapot.bin -------------------------------------------------------------------------------- /examples/other/dual_3d_dma_low_framerate/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_dma_low_framerate/source/main.c -------------------------------------------------------------------------------- /examples/other/dual_3d_modes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes/Makefile -------------------------------------------------------------------------------- /examples/other/dual_3d_modes/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes/assets.sh -------------------------------------------------------------------------------- /examples/other/dual_3d_modes/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes/data/sphere.bin -------------------------------------------------------------------------------- /examples/other/dual_3d_modes/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes/data/teapot.bin -------------------------------------------------------------------------------- /examples/other/dual_3d_modes/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes/source/main.c -------------------------------------------------------------------------------- /examples/other/dual_3d_modes_args/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes_args/Makefile -------------------------------------------------------------------------------- /examples/other/dual_3d_modes_args/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes_args/assets.sh -------------------------------------------------------------------------------- /examples/other/dual_3d_modes_args/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes_args/data/sphere.bin -------------------------------------------------------------------------------- /examples/other/dual_3d_modes_args/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes_args/data/teapot.bin -------------------------------------------------------------------------------- /examples/other/dual_3d_modes_args/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/dual_3d_modes_args/source/main.c -------------------------------------------------------------------------------- /examples/other/error_handling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/error_handling/Makefile -------------------------------------------------------------------------------- /examples/other/error_handling/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/error_handling/source/main.c -------------------------------------------------------------------------------- /examples/other/fps_counter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/fps_counter/Makefile -------------------------------------------------------------------------------- /examples/other/fps_counter/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/fps_counter/assets.sh -------------------------------------------------------------------------------- /examples/other/fps_counter/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/fps_counter/data/teapot.bin -------------------------------------------------------------------------------- /examples/other/fps_counter/graphics/teapot.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/fps_counter/graphics/teapot.grit -------------------------------------------------------------------------------- /examples/other/fps_counter/graphics/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/fps_counter/graphics/teapot.png -------------------------------------------------------------------------------- /examples/other/fps_counter/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/fps_counter/source/main.c -------------------------------------------------------------------------------- /examples/other/free_camera/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/free_camera/Makefile -------------------------------------------------------------------------------- /examples/other/free_camera/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/free_camera/assets.sh -------------------------------------------------------------------------------- /examples/other/free_camera/data/robot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/free_camera/data/robot.bin -------------------------------------------------------------------------------- /examples/other/free_camera/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/free_camera/graphics/texture.grit -------------------------------------------------------------------------------- /examples/other/free_camera/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/free_camera/graphics/texture.png -------------------------------------------------------------------------------- /examples/other/free_camera/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/free_camera/source/main.c -------------------------------------------------------------------------------- /examples/other/polygon_colored/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/polygon_colored/Makefile -------------------------------------------------------------------------------- /examples/other/polygon_colored/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/polygon_colored/source/main.c -------------------------------------------------------------------------------- /examples/other/polygon_textured/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/polygon_textured/Makefile -------------------------------------------------------------------------------- /examples/other/polygon_textured/graphics/texture.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/polygon_textured/graphics/texture.grit -------------------------------------------------------------------------------- /examples/other/polygon_textured/graphics/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/polygon_textured/graphics/texture.png -------------------------------------------------------------------------------- /examples/other/polygon_textured/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/polygon_textured/source/main.c -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgb256/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgb256/Makefile -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgb256/graphics/pal256.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgb256/graphics/pal256.grit -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgb256/graphics/pal256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgb256/graphics/pal256.png -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgb256/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgb256/source/main.c -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgba/Makefile -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgba/graphics/a1rgb5.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgba/graphics/a1rgb5.grit -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgba/graphics/a1rgb5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgba/graphics/a1rgb5.png -------------------------------------------------------------------------------- /examples/other/stylus_texture_drawing_rgba/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/stylus_texture_drawing_rgba/source/main.c -------------------------------------------------------------------------------- /examples/other/swap_3d_dual_screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_dual_screen/Makefile -------------------------------------------------------------------------------- /examples/other/swap_3d_dual_screen/graphics/a3pal32.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_dual_screen/graphics/a3pal32.grit -------------------------------------------------------------------------------- /examples/other/swap_3d_dual_screen/graphics/a3pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_dual_screen/graphics/a3pal32.png -------------------------------------------------------------------------------- /examples/other/swap_3d_dual_screen/graphics/a5pal8.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_dual_screen/graphics/a5pal8.grit -------------------------------------------------------------------------------- /examples/other/swap_3d_dual_screen/graphics/a5pal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_dual_screen/graphics/a5pal8.png -------------------------------------------------------------------------------- /examples/other/swap_3d_dual_screen/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_dual_screen/source/main.c -------------------------------------------------------------------------------- /examples/other/swap_3d_single_screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_single_screen/Makefile -------------------------------------------------------------------------------- /examples/other/swap_3d_single_screen/graphics/a5pal8.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_single_screen/graphics/a5pal8.grit -------------------------------------------------------------------------------- /examples/other/swap_3d_single_screen/graphics/a5pal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_single_screen/graphics/a5pal8.png -------------------------------------------------------------------------------- /examples/other/swap_3d_single_screen/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/swap_3d_single_screen/source/main.c -------------------------------------------------------------------------------- /examples/other/touch_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/touch_test/Makefile -------------------------------------------------------------------------------- /examples/other/touch_test/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/touch_test/assets.sh -------------------------------------------------------------------------------- /examples/other/touch_test/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/touch_test/data/sphere.bin -------------------------------------------------------------------------------- /examples/other/touch_test/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/other/touch_test/source/main.c -------------------------------------------------------------------------------- /examples/physics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/Makefile -------------------------------------------------------------------------------- /examples/physics/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/assets.sh -------------------------------------------------------------------------------- /examples/physics/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/basic/Makefile -------------------------------------------------------------------------------- /examples/physics/basic/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/basic/assets.sh -------------------------------------------------------------------------------- /examples/physics/basic/data/cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/basic/data/cube.bin -------------------------------------------------------------------------------- /examples/physics/basic/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/basic/source/main.c -------------------------------------------------------------------------------- /examples/physics/box_tower/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/box_tower/Makefile -------------------------------------------------------------------------------- /examples/physics/box_tower/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/box_tower/assets.sh -------------------------------------------------------------------------------- /examples/physics/box_tower/data/cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/box_tower/data/cube.bin -------------------------------------------------------------------------------- /examples/physics/box_tower/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/box_tower/source/main.c -------------------------------------------------------------------------------- /examples/physics/collision_actions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/collision_actions/Makefile -------------------------------------------------------------------------------- /examples/physics/collision_actions/assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/collision_actions/assets.sh -------------------------------------------------------------------------------- /examples/physics/collision_actions/data/cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/collision_actions/data/cube.bin -------------------------------------------------------------------------------- /examples/physics/collision_actions/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/physics/collision_actions/source/main.c -------------------------------------------------------------------------------- /examples/templates/3d_dual_screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/3d_dual_screen/Makefile -------------------------------------------------------------------------------- /examples/templates/3d_dual_screen/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/3d_dual_screen/source/main.c -------------------------------------------------------------------------------- /examples/templates/3d_single_screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/3d_single_screen/Makefile -------------------------------------------------------------------------------- /examples/templates/3d_single_screen/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/3d_single_screen/source/main.c -------------------------------------------------------------------------------- /examples/templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/Makefile -------------------------------------------------------------------------------- /examples/templates/using_nflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/Makefile -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg0.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg0.img -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg0.map -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg0.pal -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg1.img -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg1.map -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg1.pal -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/fnt/default.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/fnt/default.fnt -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/robot.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/robot.dsm -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/robot_wave.dsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/robot_wave.dsa -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/sprite/personaje.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/sprite/personaje.img -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/sprite/personaje.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/sprite/personaje.pal -------------------------------------------------------------------------------- /examples/templates/using_nflib/nitrofiles/texture_tex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/nitrofiles/texture_tex.bin -------------------------------------------------------------------------------- /examples/templates/using_nflib/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/templates/using_nflib/source/main.c -------------------------------------------------------------------------------- /examples/text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/Makefile -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/.gitignore -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/build.py -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/fonts/font.bmfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/fonts/font.bmfc -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/fonts/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/fonts/font.fnt -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/fonts/font_16.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/fonts/font_16.grit -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/fonts/font_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/fonts/font_16.png -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/fonts/font_256.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/fonts/font_256.grit -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/fonts/font_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/fonts/font_256.png -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/readme.md -------------------------------------------------------------------------------- /examples/text/font_from_nitrofs/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_nitrofs/source/main.c -------------------------------------------------------------------------------- /examples/text/font_from_ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/Makefile -------------------------------------------------------------------------------- /examples/text/font_from_ram/data/font_fnt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/data/font_fnt.bin -------------------------------------------------------------------------------- /examples/text/font_from_ram/font.bmfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/font.bmfc -------------------------------------------------------------------------------- /examples/text/font_from_ram/graphics/font_16.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/graphics/font_16.grit -------------------------------------------------------------------------------- /examples/text/font_from_ram/graphics/font_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/graphics/font_16.png -------------------------------------------------------------------------------- /examples/text/font_from_ram/graphics/font_256.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/graphics/font_256.grit -------------------------------------------------------------------------------- /examples/text/font_from_ram/graphics/font_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/graphics/font_256.png -------------------------------------------------------------------------------- /examples/text/font_from_ram/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/font_from_ram/source/main.c -------------------------------------------------------------------------------- /examples/text/monospaced_text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/monospaced_text/Makefile -------------------------------------------------------------------------------- /examples/text/monospaced_text/graphics/text.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/monospaced_text/graphics/text.grit -------------------------------------------------------------------------------- /examples/text/monospaced_text/graphics/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/monospaced_text/graphics/text.png -------------------------------------------------------------------------------- /examples/text/monospaced_text/graphics/text2.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/monospaced_text/graphics/text2.grit -------------------------------------------------------------------------------- /examples/text/monospaced_text/graphics/text2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/monospaced_text/graphics/text2.png -------------------------------------------------------------------------------- /examples/text/monospaced_text/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/examples/text/monospaced_text/source/main.c -------------------------------------------------------------------------------- /include/NE2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NE2D.h -------------------------------------------------------------------------------- /include/NEAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEAlloc.h -------------------------------------------------------------------------------- /include/NEAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEAnimation.h -------------------------------------------------------------------------------- /include/NECamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NECamera.h -------------------------------------------------------------------------------- /include/NEDisplayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEDisplayList.h -------------------------------------------------------------------------------- /include/NEFAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEFAT.h -------------------------------------------------------------------------------- /include/NEFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEFormats.h -------------------------------------------------------------------------------- /include/NEGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEGUI.h -------------------------------------------------------------------------------- /include/NEGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEGeneral.h -------------------------------------------------------------------------------- /include/NEMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEMain.h -------------------------------------------------------------------------------- /include/NEModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEModel.h -------------------------------------------------------------------------------- /include/NEPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEPalette.h -------------------------------------------------------------------------------- /include/NEPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEPhysics.h -------------------------------------------------------------------------------- /include/NEPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEPolygon.h -------------------------------------------------------------------------------- /include/NERichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NERichText.h -------------------------------------------------------------------------------- /include/NEText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NEText.h -------------------------------------------------------------------------------- /include/NETexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/include/NETexture.h -------------------------------------------------------------------------------- /licenses/cc0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/licenses/cc0-1.0.txt -------------------------------------------------------------------------------- /licenses/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/licenses/mit.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/readme.rst -------------------------------------------------------------------------------- /screenshots/animated_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/animated_model.png -------------------------------------------------------------------------------- /screenshots/box_tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/box_tower.png -------------------------------------------------------------------------------- /screenshots/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/fog.png -------------------------------------------------------------------------------- /screenshots/screen_effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/screen_effects.png -------------------------------------------------------------------------------- /screenshots/shadow_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/shadow_volume.png -------------------------------------------------------------------------------- /screenshots/specular_material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/specular_material.png -------------------------------------------------------------------------------- /screenshots/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/sprites.png -------------------------------------------------------------------------------- /screenshots/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/screenshots/text.png -------------------------------------------------------------------------------- /source/NE2D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NE2D.c -------------------------------------------------------------------------------- /source/NEAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEAlloc.c -------------------------------------------------------------------------------- /source/NEAnimation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEAnimation.c -------------------------------------------------------------------------------- /source/NECamera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NECamera.c -------------------------------------------------------------------------------- /source/NEDisplayList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEDisplayList.c -------------------------------------------------------------------------------- /source/NEFAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEFAT.c -------------------------------------------------------------------------------- /source/NEFormats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEFormats.c -------------------------------------------------------------------------------- /source/NEGUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEGUI.c -------------------------------------------------------------------------------- /source/NEGeneral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEGeneral.c -------------------------------------------------------------------------------- /source/NEMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEMath.h -------------------------------------------------------------------------------- /source/NEModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEModel.c -------------------------------------------------------------------------------- /source/NEPalette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEPalette.c -------------------------------------------------------------------------------- /source/NEPhysics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEPhysics.c -------------------------------------------------------------------------------- /source/NEPolygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEPolygon.c -------------------------------------------------------------------------------- /source/NERichText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NERichText.c -------------------------------------------------------------------------------- /source/NEText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NEText.c -------------------------------------------------------------------------------- /source/NETexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/NETexture.c -------------------------------------------------------------------------------- /source/dsma/dsma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/dsma/dsma.c -------------------------------------------------------------------------------- /source/dsma/dsma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/dsma/dsma.h -------------------------------------------------------------------------------- /source/libdsf/dsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/libdsf/dsf.c -------------------------------------------------------------------------------- /source/libdsf/dsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/source/libdsf/dsf.h -------------------------------------------------------------------------------- /tests/3d_modes_lcd_depth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/3d_modes_lcd_depth/Makefile -------------------------------------------------------------------------------- /tests/3d_modes_lcd_depth/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/3d_modes_lcd_depth/source/main.c -------------------------------------------------------------------------------- /tests/allocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/allocator/Makefile -------------------------------------------------------------------------------- /tests/allocator/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/allocator/source/main.c -------------------------------------------------------------------------------- /tests/clone_materials/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/clone_materials/Makefile -------------------------------------------------------------------------------- /tests/clone_materials/graphics/a3pal32.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/clone_materials/graphics/a3pal32.grit -------------------------------------------------------------------------------- /tests/clone_materials/graphics/a3pal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/clone_materials/graphics/a3pal32.png -------------------------------------------------------------------------------- /tests/clone_materials/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tests/clone_materials/source/main.c -------------------------------------------------------------------------------- /tools/img2ds/img2ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/img2ds/img2ds.py -------------------------------------------------------------------------------- /tools/img2ds/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/img2ds/palette.py -------------------------------------------------------------------------------- /tools/img2ds/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/img2ds/readme.rst -------------------------------------------------------------------------------- /tools/img2ds/requirements.txt: -------------------------------------------------------------------------------- 1 | pillow 2 | -------------------------------------------------------------------------------- /tools/md5_to_dsma/display_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/md5_to_dsma/display_list.py -------------------------------------------------------------------------------- /tools/md5_to_dsma/md5_to_dsma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/md5_to_dsma/md5_to_dsma.py -------------------------------------------------------------------------------- /tools/obj2dl/display_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/obj2dl/display_list.py -------------------------------------------------------------------------------- /tools/obj2dl/obj2dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/obj2dl/obj2dl.py -------------------------------------------------------------------------------- /tools/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioND/nitro-engine/HEAD/tools/readme.rst --------------------------------------------------------------------------------