├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── examples ├── shaders │ ├── raymarcher.frag │ ├── spiral.frag │ ├── spiral.frag.uniformdata │ ├── test_arrays.frag │ ├── test_arrays.frag.uniformdata │ ├── test_cubemap.frag │ └── test_texture.frag └── textures │ ├── Baboon.tga │ ├── Lenna.tga │ ├── Paprika.tga │ ├── dollar.bmp │ └── environments │ ├── galileo_cross.hdr │ └── galileo_cross.png ├── projects ├── visualstudio │ ├── .gitignore │ ├── TwoTriangles.sln │ ├── TwoTriangles │ │ └── TwoTriangles.vcxproj │ ├── imgui │ │ └── imgui.vcxproj │ ├── lib │ │ ├── SDL2-2.0.7 │ │ │ ├── BUGS.txt │ │ │ ├── COPYING.txt │ │ │ ├── README-SDL.txt │ │ │ ├── README.txt │ │ │ ├── WhatsNew.txt │ │ │ ├── docs │ │ │ │ ├── README-android.md │ │ │ │ ├── README-cmake.md │ │ │ │ ├── README-directfb.md │ │ │ │ ├── README-dynapi.md │ │ │ │ ├── README-emscripten.md │ │ │ │ ├── README-gesture.md │ │ │ │ ├── README-hg.md │ │ │ │ ├── README-ios.md │ │ │ │ ├── README-linux.md │ │ │ │ ├── README-macosx.md │ │ │ │ ├── README-nacl.md │ │ │ │ ├── README-pandora.md │ │ │ │ ├── README-platforms.md │ │ │ │ ├── README-porting.md │ │ │ │ ├── README-psp.md │ │ │ │ ├── README-raspberrypi.md │ │ │ │ ├── README-touch.md │ │ │ │ ├── README-wince.md │ │ │ │ ├── README-windows.md │ │ │ │ ├── README-winrt.md │ │ │ │ ├── README.md │ │ │ │ └── doxyfile │ │ │ ├── include │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config.h.cmake │ │ │ │ ├── SDL_config.h.in │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_macosx.h.orig │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_psp.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ └── lib │ │ │ │ └── x86 │ │ │ │ ├── SDL2.dll │ │ │ │ ├── SDL2.lib │ │ │ │ ├── SDL2main.lib │ │ │ │ └── SDL2test.lib │ │ └── glew-1.13.0 │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── TODO.txt │ │ │ ├── bin │ │ │ ├── Release MX │ │ │ │ ├── Win32 │ │ │ │ │ └── glew32mx.dll │ │ │ │ └── x64 │ │ │ │ │ └── glew32mx.dll │ │ │ └── Release │ │ │ │ ├── Win32 │ │ │ │ ├── glew32.dll │ │ │ │ ├── glewinfo.exe │ │ │ │ └── visualinfo.exe │ │ │ │ └── x64 │ │ │ │ ├── glew32.dll │ │ │ │ ├── glewinfo.exe │ │ │ │ └── visualinfo.exe │ │ │ ├── doc │ │ │ ├── advanced.html │ │ │ ├── basic.html │ │ │ ├── build.html │ │ │ ├── credits.html │ │ │ ├── github.png │ │ │ ├── glew.css │ │ │ ├── glew.html │ │ │ ├── glew.png │ │ │ ├── glew.txt │ │ │ ├── glxew.html │ │ │ ├── gpl.txt │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── khronos.txt │ │ │ ├── log.html │ │ │ ├── mesa.txt │ │ │ ├── new.png │ │ │ ├── ogl_sm.jpg │ │ │ └── wglew.html │ │ │ ├── include │ │ │ └── GL │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ │ └── lib │ │ │ ├── Release MX │ │ │ ├── Win32 │ │ │ │ ├── glew32mx.lib │ │ │ │ └── glew32mxs.lib │ │ │ └── x64 │ │ │ │ ├── glew32mx.lib │ │ │ │ └── glew32mxs.lib │ │ │ └── Release │ │ │ ├── Win32 │ │ │ ├── glew32.lib │ │ │ └── glew32s.lib │ │ │ └── x64 │ │ │ ├── glew32.lib │ │ │ └── glew32s.lib │ ├── nativefiledialog │ │ └── nativefiledialog.vcxproj │ └── stb_image │ │ └── stb_image.vcxproj └── xcode │ ├── .gitignore │ ├── Frameworks │ └── SDL2.framework │ │ ├── Headers │ │ ├── Resources │ │ ├── SDL2 │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ └── Info.plist │ │ ├── SDL2 │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current │ └── TwoTriangles │ ├── TwoTriangles.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── TwoTriangles │ ├── Info.plist │ └── main_sdl2_ub.cpp │ ├── imgui.xcodeproj │ └── project.pbxproj │ ├── nativefiledialog.xcodeproj │ └── project.pbxproj │ └── stb_image.xcodeproj │ └── project.pbxproj └── src ├── app ├── app.cpp └── app.h ├── main_sdl2_ub.cpp └── video ├── shader_uniform.cpp └── shader_uniform.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | imgui.ini 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/README.md -------------------------------------------------------------------------------- /examples/shaders/raymarcher.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/raymarcher.frag -------------------------------------------------------------------------------- /examples/shaders/spiral.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/spiral.frag -------------------------------------------------------------------------------- /examples/shaders/spiral.frag.uniformdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/spiral.frag.uniformdata -------------------------------------------------------------------------------- /examples/shaders/test_arrays.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/test_arrays.frag -------------------------------------------------------------------------------- /examples/shaders/test_arrays.frag.uniformdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/test_arrays.frag.uniformdata -------------------------------------------------------------------------------- /examples/shaders/test_cubemap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/test_cubemap.frag -------------------------------------------------------------------------------- /examples/shaders/test_texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/shaders/test_texture.frag -------------------------------------------------------------------------------- /examples/textures/Baboon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/textures/Baboon.tga -------------------------------------------------------------------------------- /examples/textures/Lenna.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/textures/Lenna.tga -------------------------------------------------------------------------------- /examples/textures/Paprika.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/textures/Paprika.tga -------------------------------------------------------------------------------- /examples/textures/dollar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/textures/dollar.bmp -------------------------------------------------------------------------------- /examples/textures/environments/galileo_cross.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/textures/environments/galileo_cross.hdr -------------------------------------------------------------------------------- /examples/textures/environments/galileo_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/examples/textures/environments/galileo_cross.png -------------------------------------------------------------------------------- /projects/visualstudio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/.gitignore -------------------------------------------------------------------------------- /projects/visualstudio/TwoTriangles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/TwoTriangles.sln -------------------------------------------------------------------------------- /projects/visualstudio/TwoTriangles/TwoTriangles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/TwoTriangles/TwoTriangles.vcxproj -------------------------------------------------------------------------------- /projects/visualstudio/imgui/imgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/imgui/imgui.vcxproj -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/BUGS.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/COPYING.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/README-SDL.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/README.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/WhatsNew.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-android.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-cmake.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-directfb.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-dynapi.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-emscripten.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-gesture.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-hg.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-ios.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-linux.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-macosx.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-nacl.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-pandora.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-platforms.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-porting.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-psp.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-touch.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-wince.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-windows.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README-winrt.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/README.md -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/docs/doxyfile -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_assert.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_atomic.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_audio.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_bits.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_blendmode.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_clipboard.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config.h.in -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_android.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_psp.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_windows.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_copying.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_egl.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_endian.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_error.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_events.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_filesystem.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_gesture.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_haptic.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_hints.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_joystick.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_keyboard.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_keycode.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_loadso.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_log.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_main.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_messagebox.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_mouse.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_mutex.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_name.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengl.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_pixels.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_platform.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_power.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_quit.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_rect.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_render.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_revision.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_rwops.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_scancode.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_shape.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_stdinc.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_surface.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_system.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_syswm.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_assert.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_common.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_compare.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_font.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_harness.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_images.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_log.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_md5.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_memory.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_test_random.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_thread.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_timer.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_touch.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_types.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_version.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_video.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/SDL_vulkan.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/begin_code.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/include/close_code.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/SDL2-2.0.7/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/LICENSE.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/README.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/TODO.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release MX/Win32/glew32mx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release MX/Win32/glew32mx.dll -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release MX/x64/glew32mx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release MX/x64/glew32mx.dll -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release/Win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release/Win32/glew32.dll -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release/Win32/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release/Win32/glewinfo.exe -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release/Win32/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release/Win32/visualinfo.exe -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release/x64/glew32.dll -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release/x64/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release/x64/glewinfo.exe -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/bin/Release/x64/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/bin/Release/x64/visualinfo.exe -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/advanced.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/basic.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/build.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/credits.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/github.png -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/glew.css -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/glew.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/glew.png -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/glew.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/glxew.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/gpl.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/index.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/install.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/khronos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/khronos.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/log.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/mesa.txt -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/new.png -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/doc/wglew.html -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/include/GL/glew.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/include/GL/glxew.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/include/GL/wglew.h -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release MX/Win32/glew32mx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release MX/Win32/glew32mx.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release MX/Win32/glew32mxs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release MX/Win32/glew32mxs.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release MX/x64/glew32mx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release MX/x64/glew32mx.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release MX/x64/glew32mxs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release MX/x64/glew32mxs.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release/Win32/glew32.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release/Win32/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release/Win32/glew32s.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release/x64/glew32.lib -------------------------------------------------------------------------------- /projects/visualstudio/lib/glew-1.13.0/lib/Release/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/lib/glew-1.13.0/lib/Release/x64/glew32s.lib -------------------------------------------------------------------------------- /projects/visualstudio/nativefiledialog/nativefiledialog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/nativefiledialog/nativefiledialog.vcxproj -------------------------------------------------------------------------------- /projects/visualstudio/stb_image/stb_image.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/visualstudio/stb_image/stb_image.vcxproj -------------------------------------------------------------------------------- /projects/xcode/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_shape.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/Frameworks/SDL2.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /projects/xcode/Frameworks/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/TwoTriangles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/TwoTriangles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/TwoTriangles.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/TwoTriangles.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/TwoTriangles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/TwoTriangles/Info.plist -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/TwoTriangles/main_sdl2_ub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/TwoTriangles/main_sdl2_ub.cpp -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/imgui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/imgui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/nativefiledialog.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/nativefiledialog.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/xcode/TwoTriangles/stb_image.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/projects/xcode/TwoTriangles/stb_image.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/src/app/app.cpp -------------------------------------------------------------------------------- /src/app/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/src/app/app.h -------------------------------------------------------------------------------- /src/main_sdl2_ub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/src/main_sdl2_ub.cpp -------------------------------------------------------------------------------- /src/video/shader_uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/src/video/shader_uniform.cpp -------------------------------------------------------------------------------- /src/video/shader_uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioarnold/TwoTriangles/HEAD/src/video/shader_uniform.h --------------------------------------------------------------------------------