├── .gitignore ├── CMakeLists.txt ├── Local.cmake ├── Readme.txt ├── cmake ├── modules │ ├── CMakeParseArguments.cmake │ ├── FindGLEW.cmake │ ├── FindGLM.cmake │ ├── FindGalaxy.cmake │ ├── FindJsonCpp.cmake │ ├── FindOpenGL.cmake │ ├── FindPackageHandleStandardArgs.cmake │ ├── FindPackageMessage.cmake │ ├── FindSDL2.cmake │ ├── FindSDL2_image.cmake │ └── FindSDL2_ttf.cmake └── project.vcxproj.user.in ├── dep ├── osx │ ├── SDL2 │ │ └── SDL2.framework │ │ │ ├── .DS_Store │ │ │ ├── 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 │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ │ ├── Resources │ │ │ ├── .DS_Store │ │ │ └── Info.plist │ │ │ ├── SDL2 │ │ │ └── Versions │ │ │ ├── .DS_Store │ │ │ ├── A │ │ │ ├── .DS_Store │ │ │ ├── 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 │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ ├── Resources │ │ │ │ ├── .DS_Store │ │ │ │ └── Info.plist │ │ │ ├── SDL2 │ │ │ └── _CodeSignature │ │ │ │ ├── .DS_Store │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ ├── .DS_Store │ │ │ ├── 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 │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ │ ├── Resources │ │ │ ├── .DS_Store │ │ │ └── Info.plist │ │ │ ├── SDL2 │ │ │ └── _CodeSignature │ │ │ ├── .DS_Store │ │ │ └── CodeResources │ ├── SDL2_image │ │ └── SDL2_image.framework │ │ │ ├── .DS_Store │ │ │ ├── Frameworks │ │ │ ├── .DS_Store │ │ │ └── webp.framework │ │ │ │ ├── Headers │ │ │ │ └── webp │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ └── types.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.webp.txt │ │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── webp │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── webp │ │ │ │ └── webp │ │ │ ├── Headers │ │ │ ├── .DS_Store │ │ │ └── SDL_image.h │ │ │ ├── Resources │ │ │ ├── .DS_Store │ │ │ └── Info.plist │ │ │ ├── SDL2_image │ │ │ └── Versions │ │ │ ├── .DS_Store │ │ │ ├── A │ │ │ ├── .DS_Store │ │ │ ├── Frameworks │ │ │ │ ├── .DS_Store │ │ │ │ └── webp.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── webp │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── webp │ │ │ │ │ └── webp │ │ │ ├── Headers │ │ │ │ ├── .DS_Store │ │ │ │ └── SDL_image.h │ │ │ ├── Resources │ │ │ │ ├── .DS_Store │ │ │ │ └── Info.plist │ │ │ ├── SDL2_image │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ ├── .DS_Store │ │ │ ├── Frameworks │ │ │ ├── .DS_Store │ │ │ └── webp.framework │ │ │ │ ├── Headers │ │ │ │ └── webp │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ └── types.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.webp.txt │ │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── webp │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── webp │ │ │ │ └── webp │ │ │ ├── Headers │ │ │ ├── .DS_Store │ │ │ └── SDL_image.h │ │ │ ├── Resources │ │ │ ├── .DS_Store │ │ │ └── Info.plist │ │ │ ├── SDL2_image │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SDL2_ttf │ │ └── SDL2_ttf.framework │ │ │ ├── .DS_Store │ │ │ ├── Frameworks │ │ │ └── FreeType.framework │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── Headers │ │ │ ├── .DS_Store │ │ │ └── SDL_ttf.h │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── SDL2_ttf │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── .DS_Store │ │ │ ├── Frameworks │ │ │ │ └── FreeType.framework │ │ │ │ │ ├── FreeType │ │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── FreeType │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ └── ft2build.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── FreeType │ │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Headers │ │ │ │ ├── .DS_Store │ │ │ │ └── SDL_ttf.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SDL2_ttf │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ ├── .DS_Store │ │ │ ├── Frameworks │ │ │ └── FreeType.framework │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── Headers │ │ │ ├── .DS_Store │ │ │ └── SDL_ttf.h │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── SDL2_ttf │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── glew │ │ ├── LICENSE.txt │ │ ├── include │ │ │ └── GL │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ └── lib │ │ │ ├── libGLEW.1.13.0.dylib │ │ │ ├── libGLEW.1.13.dylib │ │ │ ├── libGLEW.a │ │ │ ├── libGLEW.dylib │ │ │ ├── libGLEWmx.1.13.0.dylib │ │ │ ├── libGLEWmx.1.13.dylib │ │ │ ├── libGLEWmx.a │ │ │ └── libGLEWmx.dylib │ ├── glm │ │ ├── copying.txt │ │ └── include │ │ │ └── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── glm.cpp │ │ │ ├── intrinsic_common.hpp │ │ │ ├── intrinsic_common.inl │ │ │ ├── intrinsic_exponential.hpp │ │ │ ├── intrinsic_exponential.inl │ │ │ ├── intrinsic_geometric.hpp │ │ │ ├── intrinsic_geometric.inl │ │ │ ├── intrinsic_integer.hpp │ │ │ ├── intrinsic_integer.inl │ │ │ ├── intrinsic_matrix.hpp │ │ │ ├── intrinsic_matrix.inl │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ ├── intrinsic_trigonometric.inl │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ ├── intrinsic_vector_relational.inl │ │ │ ├── precision.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_vec.hpp │ │ │ ├── type_vec.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ ├── type_vec4_avx.inl │ │ │ ├── type_vec4_avx2.inl │ │ │ └── type_vec4_sse2.inl │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ ├── vec1.hpp │ │ │ └── vec1.inl │ │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extented_min_max.hpp │ │ │ ├── extented_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── simd_mat4.hpp │ │ │ ├── simd_mat4.inl │ │ │ ├── simd_quat.hpp │ │ │ ├── simd_quat.inl │ │ │ ├── simd_vec4.hpp │ │ │ ├── simd_vec4.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ │ ├── integer.hpp │ │ │ ├── mat2x2.hpp │ │ │ ├── mat2x3.hpp │ │ │ ├── mat2x4.hpp │ │ │ ├── mat3x2.hpp │ │ │ ├── mat3x3.hpp │ │ │ ├── mat3x4.hpp │ │ │ ├── mat4x2.hpp │ │ │ ├── mat4x3.hpp │ │ │ ├── mat4x4.hpp │ │ │ ├── matrix.hpp │ │ │ ├── packing.hpp │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ └── vector_relational.hpp │ └── jsoncpp │ │ ├── LICENSE │ │ ├── include │ │ └── json │ │ │ ├── assertions.h │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ │ └── lib │ │ ├── libjsoncpp-d.a │ │ └── libjsoncpp.a └── win │ ├── SDL2 │ ├── 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_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_opengles.h │ │ ├── SDL_opengles2.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_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ ├── SDL2_image │ ├── include │ │ └── SDL_image.h │ └── lib │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL2_image.dll │ │ ├── SDL2_image.lib │ │ ├── libjpeg-9.dll │ │ ├── libpng16-16.dll │ │ ├── libtiff-5.dll │ │ ├── libwebp-4.dll │ │ └── zlib1.dll │ ├── SDL2_ttf │ ├── include │ │ └── SDL_ttf.h │ └── lib │ │ ├── LICENSE.freetype.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL2_ttf.dll │ │ ├── SDL2_ttf.lib │ │ ├── libfreetype-6.dll │ │ └── zlib1.dll │ ├── glew │ ├── bin │ │ └── Release │ │ │ └── x64 │ │ │ ├── glew32.dll │ │ │ ├── glewinfo.exe │ │ │ └── visualinfo.exe │ ├── include │ │ └── GL │ │ │ ├── eglew.h │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── lib │ │ └── Release │ │ └── x64 │ │ ├── glew32.lib │ │ └── glew32s.lib │ ├── glm │ ├── copying.txt │ └── include │ │ └── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ ├── type_vec4_avx.inl │ │ ├── type_vec4_avx2.inl │ │ └── type_vec4_sse2.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.inl │ │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ └── jsoncpp │ ├── include │ ├── CMakeLists.txt │ └── json │ │ ├── allocator.h │ │ ├── assertions.h │ │ ├── config.h │ │ ├── forwards.h │ │ ├── json.h │ │ ├── json_features.h │ │ ├── reader.h │ │ ├── value.h │ │ ├── version.h │ │ └── writer.h │ └── lib │ ├── jsoncpp-d.lib │ └── jsoncpp.lib ├── res ├── fonts │ └── FreeSans.ttf └── images │ ├── button.png │ └── selectedbutton.png └── src ├── CMakeLists.txt ├── engine ├── CMakeLists.txt ├── core │ ├── ResourceManager.h │ ├── SDLResourceManager.cc │ └── SDLResourceManager.h ├── gamelogic │ ├── GameLogic.cc │ └── GameLogic.h ├── networking │ ├── AbstractClient.cc │ ├── AbstractClient.h │ ├── AbstractServer.cc │ ├── AbstractServer.h │ ├── NetworkingEngine.cc │ └── NetworkingEngine.h ├── physics │ ├── PhysicsEngine.cc │ └── PhysicsEngine.h ├── renderer │ ├── AbstractRenderer.h │ ├── Camera.cc │ ├── Camera.h │ ├── Color.cc │ ├── Color.h │ ├── OGLRenderer.cc │ ├── OGLRenderer.h │ ├── Renderer.h │ ├── Sprite.cc │ └── Sprite.h ├── serialize │ ├── JsonSerializable.h │ ├── JsonSerializer.cc │ └── JsonSerializer.h ├── system │ ├── Button.cc │ ├── Button.h │ ├── GUIElement.h │ ├── SDLWindow.cc │ ├── SDLWindow.h │ └── Window.h └── utils │ └── NonCopyable.h ├── game ├── Achievements.cc ├── Achievements.h ├── Application.cc ├── Application.h ├── CMakeLists.txt ├── GalaxyDemo.cc ├── GalaxyDemo.h ├── GameManager.cc ├── GameManager.h ├── GameObject.cc ├── GameObject.h ├── GameplayData.cc ├── GameplayData.h ├── IGame.h ├── Leaderboards.cc ├── Leaderboards.h ├── Main.cc ├── Player.cc ├── Player.h ├── Statistics.cc ├── Statistics.h ├── TailPart.cc ├── TailPart.h ├── messages │ ├── GameResults.cc │ ├── GameResults.h │ ├── GameTick.cc │ ├── GameTick.h │ ├── InitGame.cc │ ├── InitGame.h │ ├── Ready.cc │ ├── Ready.h │ ├── UpdateDirection.cc │ └── UpdateDirection.h ├── networking │ ├── ChatRoom.cc │ ├── ChatRoom.h │ ├── Client.cc │ ├── Client.h │ ├── IClient.h │ ├── ILobby.h │ ├── IServer.h │ ├── Lobby.cc │ ├── Lobby.h │ ├── LobbyEvent.h │ ├── Server.cc │ └── Server.h └── scene │ ├── ChatView.cc │ ├── ChatView.h │ ├── CloudStorageView.cc │ ├── CloudStorageView.h │ ├── Game.cc │ ├── Game.h │ ├── GameState.h │ ├── InitFailedView.cc │ ├── InitFailedView.h │ ├── InsideLobbyMenu.cc │ ├── InsideLobbyMenu.h │ ├── JoinLobbyMenu.cc │ ├── JoinLobbyMenu.h │ ├── LeaderboardsView.cc │ ├── LeaderboardsView.h │ ├── LobbyMenu.cc │ ├── LobbyMenu.h │ ├── Results.cc │ ├── Results.h │ ├── SinglePlayerView.cc │ ├── SinglePlayerView.h │ ├── StartMenu.cc │ ├── StartMenu.h │ ├── StatsView.cc │ └── StatsView.h └── server ├── CMakeLists.txt ├── DedicatedServer.cc ├── DedicatedServer.h ├── LobbyHost.cc ├── LobbyHost.h ├── LobbyHostManager.cc ├── LobbyHostManager.h └── Main.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Local.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/Local.cmake -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/Readme.txt -------------------------------------------------------------------------------- /cmake/modules/CMakeParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/CMakeParseArguments.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGLM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindGLM.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGalaxy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindGalaxy.cmake -------------------------------------------------------------------------------- /cmake/modules/FindJsonCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindJsonCpp.cmake -------------------------------------------------------------------------------- /cmake/modules/FindOpenGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindOpenGL.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindPackageMessage.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindSDL2_image.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/modules/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /cmake/project.vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/cmake/project.vcxproj.user.in -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/.DS_Store -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_assert.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_audio.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_bits.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_config.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_copying.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_endian.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_error.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_events.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_hints.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_log.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_main.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_name.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_platform.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_power.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_quit.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_rect.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_render.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_revision.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_shape.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_surface.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_system.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_thread.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_timer.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_touch.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_types.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_version.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/SDL_video.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/begin_code.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Headers/close_code.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Resources/.DS_Store -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/SDL2 -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Versions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Versions/.DS_Store -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Versions/A/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Versions/A/.DS_Store -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /dep/osx/SDL2/SDL2.framework/Versions/Current/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2/SDL2.framework/Versions/Current/SDL2 -------------------------------------------------------------------------------- /dep/osx/SDL2_image/SDL2_image.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2_image/SDL2_image.framework/.DS_Store -------------------------------------------------------------------------------- /dep/osx/SDL2_image/SDL2_image.framework/SDL2_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2_image/SDL2_image.framework/SDL2_image -------------------------------------------------------------------------------- /dep/osx/SDL2_ttf/SDL2_ttf.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2_ttf/SDL2_ttf.framework/.DS_Store -------------------------------------------------------------------------------- /dep/osx/SDL2_ttf/SDL2_ttf.framework/SDL2_ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/SDL2_ttf/SDL2_ttf.framework/SDL2_ttf -------------------------------------------------------------------------------- /dep/osx/glew/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/LICENSE.txt -------------------------------------------------------------------------------- /dep/osx/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/include/GL/glew.h -------------------------------------------------------------------------------- /dep/osx/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /dep/osx/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEW.1.13.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEW.1.13.0.dylib -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEW.1.13.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEW.1.13.dylib -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEW.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEW.a -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEW.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEW.dylib -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEWmx.1.13.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEWmx.1.13.0.dylib -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEWmx.1.13.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEWmx.1.13.dylib -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEWmx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEWmx.a -------------------------------------------------------------------------------- /dep/osx/glew/lib/libGLEWmx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glew/lib/libGLEWmx.dylib -------------------------------------------------------------------------------- /dep/osx/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/copying.txt -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/common.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/exponential.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/ext.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/fwd.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/geometric.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/glm.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/integer.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/matrix.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/packing.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/vec2.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/vec3.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/vec4.hpp -------------------------------------------------------------------------------- /dep/osx/glm/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/glm/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /dep/osx/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/LICENSE -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/assertions.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/autolink.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/config.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/features.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/forwards.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/json.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/reader.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/value.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/version.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/include/json/writer.h -------------------------------------------------------------------------------- /dep/osx/jsoncpp/lib/libjsoncpp-d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/lib/libjsoncpp-d.a -------------------------------------------------------------------------------- /dep/osx/jsoncpp/lib/libjsoncpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/osx/jsoncpp/lib/libjsoncpp.a -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_assert.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_common.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_compare.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_font.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_harness.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_images.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_log.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_md5.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_test_random.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /dep/win/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/include/close_code.h -------------------------------------------------------------------------------- /dep/win/SDL2/lib/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/lib/SDL2.dll -------------------------------------------------------------------------------- /dep/win/SDL2/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/lib/SDL2.lib -------------------------------------------------------------------------------- /dep/win/SDL2/lib/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/lib/SDL2main.lib -------------------------------------------------------------------------------- /dep/win/SDL2/lib/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2/lib/SDL2test.lib -------------------------------------------------------------------------------- /dep/win/SDL2_image/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/include/SDL_image.h -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/LICENSE.png.txt -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/LICENSE.tiff.txt -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/LICENSE.webp.txt -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/LICENSE.zlib.txt -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/SDL2_image.dll -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/SDL2_image.lib -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/libjpeg-9.dll -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/libpng16-16.dll -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/libtiff-5.dll -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/libwebp-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/libwebp-4.dll -------------------------------------------------------------------------------- /dep/win/SDL2_image/lib/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_image/lib/zlib1.dll -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/include/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/include/SDL_ttf.h -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/lib/LICENSE.freetype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/lib/LICENSE.freetype.txt -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/lib/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/lib/LICENSE.zlib.txt -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/lib/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/lib/SDL2_ttf.dll -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/lib/SDL2_ttf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/lib/SDL2_ttf.lib -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/lib/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/lib/libfreetype-6.dll -------------------------------------------------------------------------------- /dep/win/SDL2_ttf/lib/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/SDL2_ttf/lib/zlib1.dll -------------------------------------------------------------------------------- /dep/win/glew/bin/Release/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/bin/Release/x64/glew32.dll -------------------------------------------------------------------------------- /dep/win/glew/bin/Release/x64/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/bin/Release/x64/glewinfo.exe -------------------------------------------------------------------------------- /dep/win/glew/bin/Release/x64/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/bin/Release/x64/visualinfo.exe -------------------------------------------------------------------------------- /dep/win/glew/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/include/GL/eglew.h -------------------------------------------------------------------------------- /dep/win/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/include/GL/glew.h -------------------------------------------------------------------------------- /dep/win/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /dep/win/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /dep/win/glew/lib/Release/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/lib/Release/x64/glew32.lib -------------------------------------------------------------------------------- /dep/win/glew/lib/Release/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glew/lib/Release/x64/glew32s.lib -------------------------------------------------------------------------------- /dep/win/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/copying.txt -------------------------------------------------------------------------------- /dep/win/glm/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /dep/win/glm/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/common.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/exponential.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/ext.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/fwd.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/geometric.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/glm.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /dep/win/glm/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/integer.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/matrix.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/packing.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/vec2.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/vec3.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/vec4.hpp -------------------------------------------------------------------------------- /dep/win/glm/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/glm/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/CMakeLists.txt -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/allocator.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/assertions.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/config.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/forwards.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/json.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/json_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/json_features.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/reader.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/value.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/version.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/include/json/writer.h -------------------------------------------------------------------------------- /dep/win/jsoncpp/lib/jsoncpp-d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/lib/jsoncpp-d.lib -------------------------------------------------------------------------------- /dep/win/jsoncpp/lib/jsoncpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/dep/win/jsoncpp/lib/jsoncpp.lib -------------------------------------------------------------------------------- /res/fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/res/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/res/images/button.png -------------------------------------------------------------------------------- /res/images/selectedbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/res/images/selectedbutton.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/CMakeLists.txt -------------------------------------------------------------------------------- /src/engine/core/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/core/ResourceManager.h -------------------------------------------------------------------------------- /src/engine/core/SDLResourceManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/core/SDLResourceManager.cc -------------------------------------------------------------------------------- /src/engine/core/SDLResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/core/SDLResourceManager.h -------------------------------------------------------------------------------- /src/engine/gamelogic/GameLogic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/gamelogic/GameLogic.cc -------------------------------------------------------------------------------- /src/engine/gamelogic/GameLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/gamelogic/GameLogic.h -------------------------------------------------------------------------------- /src/engine/networking/AbstractClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/networking/AbstractClient.cc -------------------------------------------------------------------------------- /src/engine/networking/AbstractClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/networking/AbstractClient.h -------------------------------------------------------------------------------- /src/engine/networking/AbstractServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/networking/AbstractServer.cc -------------------------------------------------------------------------------- /src/engine/networking/AbstractServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/networking/AbstractServer.h -------------------------------------------------------------------------------- /src/engine/networking/NetworkingEngine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/networking/NetworkingEngine.cc -------------------------------------------------------------------------------- /src/engine/networking/NetworkingEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/networking/NetworkingEngine.h -------------------------------------------------------------------------------- /src/engine/physics/PhysicsEngine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/physics/PhysicsEngine.cc -------------------------------------------------------------------------------- /src/engine/physics/PhysicsEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/physics/PhysicsEngine.h -------------------------------------------------------------------------------- /src/engine/renderer/AbstractRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/AbstractRenderer.h -------------------------------------------------------------------------------- /src/engine/renderer/Camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Camera.cc -------------------------------------------------------------------------------- /src/engine/renderer/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Camera.h -------------------------------------------------------------------------------- /src/engine/renderer/Color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Color.cc -------------------------------------------------------------------------------- /src/engine/renderer/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Color.h -------------------------------------------------------------------------------- /src/engine/renderer/OGLRenderer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/OGLRenderer.cc -------------------------------------------------------------------------------- /src/engine/renderer/OGLRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/OGLRenderer.h -------------------------------------------------------------------------------- /src/engine/renderer/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Renderer.h -------------------------------------------------------------------------------- /src/engine/renderer/Sprite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Sprite.cc -------------------------------------------------------------------------------- /src/engine/renderer/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/renderer/Sprite.h -------------------------------------------------------------------------------- /src/engine/serialize/JsonSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/serialize/JsonSerializable.h -------------------------------------------------------------------------------- /src/engine/serialize/JsonSerializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/serialize/JsonSerializer.cc -------------------------------------------------------------------------------- /src/engine/serialize/JsonSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/serialize/JsonSerializer.h -------------------------------------------------------------------------------- /src/engine/system/Button.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/system/Button.cc -------------------------------------------------------------------------------- /src/engine/system/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/system/Button.h -------------------------------------------------------------------------------- /src/engine/system/GUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/system/GUIElement.h -------------------------------------------------------------------------------- /src/engine/system/SDLWindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/system/SDLWindow.cc -------------------------------------------------------------------------------- /src/engine/system/SDLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/system/SDLWindow.h -------------------------------------------------------------------------------- /src/engine/system/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/system/Window.h -------------------------------------------------------------------------------- /src/engine/utils/NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/engine/utils/NonCopyable.h -------------------------------------------------------------------------------- /src/game/Achievements.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Achievements.cc -------------------------------------------------------------------------------- /src/game/Achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Achievements.h -------------------------------------------------------------------------------- /src/game/Application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Application.cc -------------------------------------------------------------------------------- /src/game/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Application.h -------------------------------------------------------------------------------- /src/game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/GalaxyDemo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GalaxyDemo.cc -------------------------------------------------------------------------------- /src/game/GalaxyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GalaxyDemo.h -------------------------------------------------------------------------------- /src/game/GameManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GameManager.cc -------------------------------------------------------------------------------- /src/game/GameManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GameManager.h -------------------------------------------------------------------------------- /src/game/GameObject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GameObject.cc -------------------------------------------------------------------------------- /src/game/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GameObject.h -------------------------------------------------------------------------------- /src/game/GameplayData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GameplayData.cc -------------------------------------------------------------------------------- /src/game/GameplayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/GameplayData.h -------------------------------------------------------------------------------- /src/game/IGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/IGame.h -------------------------------------------------------------------------------- /src/game/Leaderboards.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Leaderboards.cc -------------------------------------------------------------------------------- /src/game/Leaderboards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Leaderboards.h -------------------------------------------------------------------------------- /src/game/Main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Main.cc -------------------------------------------------------------------------------- /src/game/Player.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Player.cc -------------------------------------------------------------------------------- /src/game/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Player.h -------------------------------------------------------------------------------- /src/game/Statistics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Statistics.cc -------------------------------------------------------------------------------- /src/game/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/Statistics.h -------------------------------------------------------------------------------- /src/game/TailPart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/TailPart.cc -------------------------------------------------------------------------------- /src/game/TailPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/TailPart.h -------------------------------------------------------------------------------- /src/game/messages/GameResults.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/GameResults.cc -------------------------------------------------------------------------------- /src/game/messages/GameResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/GameResults.h -------------------------------------------------------------------------------- /src/game/messages/GameTick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/GameTick.cc -------------------------------------------------------------------------------- /src/game/messages/GameTick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/GameTick.h -------------------------------------------------------------------------------- /src/game/messages/InitGame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/InitGame.cc -------------------------------------------------------------------------------- /src/game/messages/InitGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/InitGame.h -------------------------------------------------------------------------------- /src/game/messages/Ready.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/Ready.cc -------------------------------------------------------------------------------- /src/game/messages/Ready.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/Ready.h -------------------------------------------------------------------------------- /src/game/messages/UpdateDirection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/UpdateDirection.cc -------------------------------------------------------------------------------- /src/game/messages/UpdateDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/messages/UpdateDirection.h -------------------------------------------------------------------------------- /src/game/networking/ChatRoom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/ChatRoom.cc -------------------------------------------------------------------------------- /src/game/networking/ChatRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/ChatRoom.h -------------------------------------------------------------------------------- /src/game/networking/Client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/Client.cc -------------------------------------------------------------------------------- /src/game/networking/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/Client.h -------------------------------------------------------------------------------- /src/game/networking/IClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/IClient.h -------------------------------------------------------------------------------- /src/game/networking/ILobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/ILobby.h -------------------------------------------------------------------------------- /src/game/networking/IServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/IServer.h -------------------------------------------------------------------------------- /src/game/networking/Lobby.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/Lobby.cc -------------------------------------------------------------------------------- /src/game/networking/Lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/Lobby.h -------------------------------------------------------------------------------- /src/game/networking/LobbyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/LobbyEvent.h -------------------------------------------------------------------------------- /src/game/networking/Server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/Server.cc -------------------------------------------------------------------------------- /src/game/networking/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/networking/Server.h -------------------------------------------------------------------------------- /src/game/scene/ChatView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/ChatView.cc -------------------------------------------------------------------------------- /src/game/scene/ChatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/ChatView.h -------------------------------------------------------------------------------- /src/game/scene/CloudStorageView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/CloudStorageView.cc -------------------------------------------------------------------------------- /src/game/scene/CloudStorageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/CloudStorageView.h -------------------------------------------------------------------------------- /src/game/scene/Game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/Game.cc -------------------------------------------------------------------------------- /src/game/scene/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/Game.h -------------------------------------------------------------------------------- /src/game/scene/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/GameState.h -------------------------------------------------------------------------------- /src/game/scene/InitFailedView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/InitFailedView.cc -------------------------------------------------------------------------------- /src/game/scene/InitFailedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/InitFailedView.h -------------------------------------------------------------------------------- /src/game/scene/InsideLobbyMenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/InsideLobbyMenu.cc -------------------------------------------------------------------------------- /src/game/scene/InsideLobbyMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/InsideLobbyMenu.h -------------------------------------------------------------------------------- /src/game/scene/JoinLobbyMenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/JoinLobbyMenu.cc -------------------------------------------------------------------------------- /src/game/scene/JoinLobbyMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/JoinLobbyMenu.h -------------------------------------------------------------------------------- /src/game/scene/LeaderboardsView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/LeaderboardsView.cc -------------------------------------------------------------------------------- /src/game/scene/LeaderboardsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/LeaderboardsView.h -------------------------------------------------------------------------------- /src/game/scene/LobbyMenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/LobbyMenu.cc -------------------------------------------------------------------------------- /src/game/scene/LobbyMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/LobbyMenu.h -------------------------------------------------------------------------------- /src/game/scene/Results.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/Results.cc -------------------------------------------------------------------------------- /src/game/scene/Results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/Results.h -------------------------------------------------------------------------------- /src/game/scene/SinglePlayerView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/SinglePlayerView.cc -------------------------------------------------------------------------------- /src/game/scene/SinglePlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/SinglePlayerView.h -------------------------------------------------------------------------------- /src/game/scene/StartMenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/StartMenu.cc -------------------------------------------------------------------------------- /src/game/scene/StartMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/StartMenu.h -------------------------------------------------------------------------------- /src/game/scene/StatsView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/StatsView.cc -------------------------------------------------------------------------------- /src/game/scene/StatsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/game/scene/StatsView.h -------------------------------------------------------------------------------- /src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/DedicatedServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/DedicatedServer.cc -------------------------------------------------------------------------------- /src/server/DedicatedServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/DedicatedServer.h -------------------------------------------------------------------------------- /src/server/LobbyHost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/LobbyHost.cc -------------------------------------------------------------------------------- /src/server/LobbyHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/LobbyHost.h -------------------------------------------------------------------------------- /src/server/LobbyHostManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/LobbyHostManager.cc -------------------------------------------------------------------------------- /src/server/LobbyHostManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/LobbyHostManager.h -------------------------------------------------------------------------------- /src/server/Main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogcom/galaxy-demo-app/HEAD/src/server/Main.cc --------------------------------------------------------------------------------