├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── clean.cmd ├── coding.png ├── main.cpp ├── sdl ├── BUGS.txt ├── COPYING.txt ├── README-SDL.txt ├── README.txt ├── WhatsNew.txt ├── docs │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gesture.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-linux.md │ ├── README-macosx.md │ ├── README-nacl.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-touch.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ └── doxyfile ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_config.h.cmake │ ├── SDL_config.h.in │ ├── SDL_config_android.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_macosx.h.orig │ ├── SDL_config_minimal.h │ ├── SDL_config_pandora.h │ ├── SDL_config_psp.h │ ├── SDL_config_windows.h │ ├── SDL_config_winrt.h │ ├── SDL_config_wiz.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_memory.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── SDL_vulkan.h │ ├── begin_code.h │ └── close_code.h └── lib │ ├── x64 │ └── SDL2_static.lib │ └── x86 │ └── SDL2_static.lib ├── sdl_code_edit.sln ├── sdl_code_edit.vcxproj ├── sdl_code_edit.vcxproj.filters ├── sdl_code_edit ├── code_edit.cpp └── code_edit.h └── sdl_gfx ├── AUTHORS ├── COPYING ├── ChangeLog ├── Docs ├── html.doxyfile └── html │ ├── _r_e_a_d_m_e.html │ ├── _r_e_a_d_m_e_source.html │ ├── _s_d_l2__framerate_8c.html │ ├── _s_d_l2__framerate_8c_source.html │ ├── _s_d_l2__framerate_8h.html │ ├── _s_d_l2__framerate_8h_source.html │ ├── _s_d_l2__gfx_primitives_8c.html │ ├── _s_d_l2__gfx_primitives_8c_source.html │ ├── _s_d_l2__gfx_primitives_8h.html │ ├── _s_d_l2__gfx_primitives_8h_source.html │ ├── _s_d_l2__gfx_primitives__font_8h.html │ ├── _s_d_l2__gfx_primitives__font_8h_source.html │ ├── _s_d_l2__image_filter_8c.html │ ├── _s_d_l2__image_filter_8c_source.html │ ├── _s_d_l2__image_filter_8h.html │ ├── _s_d_l2__image_filter_8h_source.html │ ├── _s_d_l2__rotozoom_8c.html │ ├── _s_d_l2__rotozoom_8c_source.html │ ├── _s_d_l2__rotozoom_8h.html │ ├── _s_d_l2__rotozoom_8h_source.html │ ├── annotated.html │ ├── bc_s.png │ ├── bdwn.png │ ├── classes.html │ ├── closed.png │ ├── doxygen.css │ ├── doxygen.png │ ├── files.html │ ├── functions.html │ ├── functions_vars.html │ ├── globals.html │ ├── globals_0x61.html │ ├── globals_0x62.html │ ├── globals_0x63.html │ ├── globals_0x65.html │ ├── globals_0x66.html │ ├── globals_0x67.html │ ├── globals_0x68.html │ ├── globals_0x6c.html │ ├── globals_0x6d.html │ ├── globals_0x70.html │ ├── globals_0x72.html │ ├── globals_0x73.html │ ├── globals_0x74.html │ ├── globals_0x76.html │ ├── globals_0x7a.html │ ├── globals_defs.html │ ├── globals_func.html │ ├── globals_func_0x61.html │ ├── globals_func_0x62.html │ ├── globals_func_0x63.html │ ├── globals_func_0x65.html │ ├── globals_func_0x66.html │ ├── globals_func_0x67.html │ ├── globals_func_0x68.html │ ├── globals_func_0x6c.html │ ├── globals_func_0x70.html │ ├── globals_func_0x72.html │ ├── globals_func_0x73.html │ ├── globals_func_0x74.html │ ├── globals_func_0x76.html │ ├── globals_func_0x7a.html │ ├── globals_type.html │ ├── index.html │ ├── jquery.js │ ├── nav_f.png │ ├── nav_h.png │ ├── open.png │ ├── struct_f_p_smanager.html │ ├── struct_s_d_l2__gfx_bresenham_iterator.html │ ├── struct_s_d_l2__gfx_murphy_iterator.html │ ├── structt_color_r_g_b_a.html │ ├── structt_color_y.html │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── SDL2_framerate.c ├── SDL2_framerate.h ├── SDL2_gfx.pc.in ├── SDL2_gfx.sln ├── SDL2_gfx.vcxproj ├── SDL2_gfxPrimitives.c ├── SDL2_gfxPrimitives.h ├── SDL2_gfxPrimitives_font.h ├── SDL2_imageFilter.c ├── SDL2_imageFilter.h ├── SDL2_rotozoom.c ├── SDL2_rotozoom.h ├── acinclude ├── libtool.m4 ├── ltdl.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── pkg.m4 └── sdl2.m4 ├── aclocal.m4 ├── autogen.sh ├── config.guess ├── config.sub ├── configure ├── configure.in ├── depcomp ├── install-sh ├── ltmain.sh ├── missing └── test ├── Makefile.in ├── README ├── TestGfx.vcxproj ├── TestImageFilter.vcxproj ├── TestRotozoom.vcxproj ├── acinclude.m4 ├── aclocal.m4 ├── autogen.sh ├── config.guess ├── config.sub ├── configure ├── configure.in ├── install-sh ├── sample16x16.bmp ├── sample24-box.bmp ├── sample24.bmp ├── sample2x2.bmp ├── sample3x3.bmp ├── sample8-box.bmp ├── sample8.bmp ├── testgfx.c ├── testimagefilter.c └── testrotozoom.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/README.md -------------------------------------------------------------------------------- /clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/clean.cmd -------------------------------------------------------------------------------- /coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/coding.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/main.cpp -------------------------------------------------------------------------------- /sdl/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/BUGS.txt -------------------------------------------------------------------------------- /sdl/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/COPYING.txt -------------------------------------------------------------------------------- /sdl/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/README-SDL.txt -------------------------------------------------------------------------------- /sdl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/README.txt -------------------------------------------------------------------------------- /sdl/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/WhatsNew.txt -------------------------------------------------------------------------------- /sdl/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-android.md -------------------------------------------------------------------------------- /sdl/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-cmake.md -------------------------------------------------------------------------------- /sdl/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-directfb.md -------------------------------------------------------------------------------- /sdl/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-dynapi.md -------------------------------------------------------------------------------- /sdl/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-emscripten.md -------------------------------------------------------------------------------- /sdl/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-gesture.md -------------------------------------------------------------------------------- /sdl/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-hg.md -------------------------------------------------------------------------------- /sdl/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-ios.md -------------------------------------------------------------------------------- /sdl/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-linux.md -------------------------------------------------------------------------------- /sdl/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-macosx.md -------------------------------------------------------------------------------- /sdl/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-nacl.md -------------------------------------------------------------------------------- /sdl/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-pandora.md -------------------------------------------------------------------------------- /sdl/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-platforms.md -------------------------------------------------------------------------------- /sdl/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-porting.md -------------------------------------------------------------------------------- /sdl/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-psp.md -------------------------------------------------------------------------------- /sdl/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /sdl/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-touch.md -------------------------------------------------------------------------------- /sdl/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-wince.md -------------------------------------------------------------------------------- /sdl/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-windows.md -------------------------------------------------------------------------------- /sdl/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README-winrt.md -------------------------------------------------------------------------------- /sdl/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/README.md -------------------------------------------------------------------------------- /sdl/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/docs/doxyfile -------------------------------------------------------------------------------- /sdl/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL.h -------------------------------------------------------------------------------- /sdl/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_assert.h -------------------------------------------------------------------------------- /sdl/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_atomic.h -------------------------------------------------------------------------------- /sdl/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_audio.h -------------------------------------------------------------------------------- /sdl/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_bits.h -------------------------------------------------------------------------------- /sdl/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_blendmode.h -------------------------------------------------------------------------------- /sdl/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_clipboard.h -------------------------------------------------------------------------------- /sdl/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config.h -------------------------------------------------------------------------------- /sdl/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /sdl/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config.h.in -------------------------------------------------------------------------------- /sdl/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_android.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /sdl/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_psp.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_windows.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /sdl/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /sdl/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_copying.h -------------------------------------------------------------------------------- /sdl/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /sdl/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_egl.h -------------------------------------------------------------------------------- /sdl/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_endian.h -------------------------------------------------------------------------------- /sdl/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_error.h -------------------------------------------------------------------------------- /sdl/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_events.h -------------------------------------------------------------------------------- /sdl/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_filesystem.h -------------------------------------------------------------------------------- /sdl/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /sdl/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_gesture.h -------------------------------------------------------------------------------- /sdl/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_haptic.h -------------------------------------------------------------------------------- /sdl/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_hints.h -------------------------------------------------------------------------------- /sdl/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_joystick.h -------------------------------------------------------------------------------- /sdl/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_keyboard.h -------------------------------------------------------------------------------- /sdl/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_keycode.h -------------------------------------------------------------------------------- /sdl/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_loadso.h -------------------------------------------------------------------------------- /sdl/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_log.h -------------------------------------------------------------------------------- /sdl/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_main.h -------------------------------------------------------------------------------- /sdl/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_messagebox.h -------------------------------------------------------------------------------- /sdl/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_mouse.h -------------------------------------------------------------------------------- /sdl/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_mutex.h -------------------------------------------------------------------------------- /sdl/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_name.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengl.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengles.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengles2.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /sdl/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /sdl/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_pixels.h -------------------------------------------------------------------------------- /sdl/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_platform.h -------------------------------------------------------------------------------- /sdl/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_power.h -------------------------------------------------------------------------------- /sdl/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_quit.h -------------------------------------------------------------------------------- /sdl/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_rect.h -------------------------------------------------------------------------------- /sdl/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_render.h -------------------------------------------------------------------------------- /sdl/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_revision.h -------------------------------------------------------------------------------- /sdl/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_rwops.h -------------------------------------------------------------------------------- /sdl/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_scancode.h -------------------------------------------------------------------------------- /sdl/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_shape.h -------------------------------------------------------------------------------- /sdl/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_stdinc.h -------------------------------------------------------------------------------- /sdl/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_surface.h -------------------------------------------------------------------------------- /sdl/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_system.h -------------------------------------------------------------------------------- /sdl/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_syswm.h -------------------------------------------------------------------------------- /sdl/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_assert.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_common.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_compare.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_font.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_harness.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_images.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_log.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_md5.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_memory.h -------------------------------------------------------------------------------- /sdl/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_test_random.h -------------------------------------------------------------------------------- /sdl/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_thread.h -------------------------------------------------------------------------------- /sdl/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_timer.h -------------------------------------------------------------------------------- /sdl/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_touch.h -------------------------------------------------------------------------------- /sdl/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_types.h -------------------------------------------------------------------------------- /sdl/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_version.h -------------------------------------------------------------------------------- /sdl/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_video.h -------------------------------------------------------------------------------- /sdl/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/SDL_vulkan.h -------------------------------------------------------------------------------- /sdl/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/begin_code.h -------------------------------------------------------------------------------- /sdl/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/include/close_code.h -------------------------------------------------------------------------------- /sdl/lib/x64/SDL2_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/lib/x64/SDL2_static.lib -------------------------------------------------------------------------------- /sdl/lib/x86/SDL2_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl/lib/x86/SDL2_static.lib -------------------------------------------------------------------------------- /sdl_code_edit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_code_edit.sln -------------------------------------------------------------------------------- /sdl_code_edit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_code_edit.vcxproj -------------------------------------------------------------------------------- /sdl_code_edit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_code_edit.vcxproj.filters -------------------------------------------------------------------------------- /sdl_code_edit/code_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_code_edit/code_edit.cpp -------------------------------------------------------------------------------- /sdl_code_edit/code_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_code_edit/code_edit.h -------------------------------------------------------------------------------- /sdl_gfx/AUTHORS: -------------------------------------------------------------------------------- 1 | aschiffler at ferzkopp dot net 2 | -------------------------------------------------------------------------------- /sdl_gfx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/COPYING -------------------------------------------------------------------------------- /sdl_gfx/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/ChangeLog -------------------------------------------------------------------------------- /sdl_gfx/Docs/html.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html.doxyfile -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_r_e_a_d_m_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_r_e_a_d_m_e.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_r_e_a_d_m_e_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_r_e_a_d_m_e_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__framerate_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__framerate_8c.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__framerate_8c_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__framerate_8c_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__framerate_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__framerate_8h.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__framerate_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__framerate_8h_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8c.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8c_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8c_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8h.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__gfx_primitives_8h_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__gfx_primitives__font_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__gfx_primitives__font_8h.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__gfx_primitives__font_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__gfx_primitives__font_8h_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__image_filter_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__image_filter_8c.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__image_filter_8c_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__image_filter_8c_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__image_filter_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__image_filter_8h.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__image_filter_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__image_filter_8h_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__rotozoom_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__rotozoom_8c.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__rotozoom_8c_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__rotozoom_8c_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__rotozoom_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__rotozoom_8h.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/_s_d_l2__rotozoom_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/_s_d_l2__rotozoom_8h_source.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/annotated.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/bc_s.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/bdwn.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/classes.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/closed.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/doxygen.css -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/doxygen.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/files.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/functions.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/functions_vars.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x61.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x62.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x63.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x65.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x66.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x67.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x68.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x6c.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x6d.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x70.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x72.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x73.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x74.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x76.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_0x7a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_0x7a.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_defs.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x61.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x62.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x63.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x65.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x66.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x67.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x68.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x6c.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x70.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x72.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x73.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x74.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x76.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_func_0x7a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_func_0x7a.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/globals_type.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/index.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/jquery.js -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/nav_f.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/nav_h.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/open.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/struct_f_p_smanager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/struct_f_p_smanager.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/struct_s_d_l2__gfx_bresenham_iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/struct_s_d_l2__gfx_bresenham_iterator.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/struct_s_d_l2__gfx_murphy_iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/struct_s_d_l2__gfx_murphy_iterator.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/structt_color_r_g_b_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/structt_color_r_g_b_a.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/structt_color_y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/structt_color_y.html -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/tab_a.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/tab_b.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/tab_h.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/tab_s.png -------------------------------------------------------------------------------- /sdl_gfx/Docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Docs/html/tabs.css -------------------------------------------------------------------------------- /sdl_gfx/INSTALL: -------------------------------------------------------------------------------- 1 | See README file. -------------------------------------------------------------------------------- /sdl_gfx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Makefile.am -------------------------------------------------------------------------------- /sdl_gfx/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/Makefile.in -------------------------------------------------------------------------------- /sdl_gfx/NEWS: -------------------------------------------------------------------------------- 1 | SDL2_gfx NEWS 2 | -------------------------------------------------------------------------------- /sdl_gfx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/README -------------------------------------------------------------------------------- /sdl_gfx/SDL2_framerate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_framerate.c -------------------------------------------------------------------------------- /sdl_gfx/SDL2_framerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_framerate.h -------------------------------------------------------------------------------- /sdl_gfx/SDL2_gfx.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_gfx.pc.in -------------------------------------------------------------------------------- /sdl_gfx/SDL2_gfx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_gfx.sln -------------------------------------------------------------------------------- /sdl_gfx/SDL2_gfx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_gfx.vcxproj -------------------------------------------------------------------------------- /sdl_gfx/SDL2_gfxPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_gfxPrimitives.c -------------------------------------------------------------------------------- /sdl_gfx/SDL2_gfxPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_gfxPrimitives.h -------------------------------------------------------------------------------- /sdl_gfx/SDL2_gfxPrimitives_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_gfxPrimitives_font.h -------------------------------------------------------------------------------- /sdl_gfx/SDL2_imageFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_imageFilter.c -------------------------------------------------------------------------------- /sdl_gfx/SDL2_imageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_imageFilter.h -------------------------------------------------------------------------------- /sdl_gfx/SDL2_rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_rotozoom.c -------------------------------------------------------------------------------- /sdl_gfx/SDL2_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/SDL2_rotozoom.h -------------------------------------------------------------------------------- /sdl_gfx/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/libtool.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/ltdl.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/pkg.m4 -------------------------------------------------------------------------------- /sdl_gfx/acinclude/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/acinclude/sdl2.m4 -------------------------------------------------------------------------------- /sdl_gfx/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/aclocal.m4 -------------------------------------------------------------------------------- /sdl_gfx/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/autogen.sh -------------------------------------------------------------------------------- /sdl_gfx/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/config.guess -------------------------------------------------------------------------------- /sdl_gfx/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/config.sub -------------------------------------------------------------------------------- /sdl_gfx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/configure -------------------------------------------------------------------------------- /sdl_gfx/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/configure.in -------------------------------------------------------------------------------- /sdl_gfx/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/depcomp -------------------------------------------------------------------------------- /sdl_gfx/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/install-sh -------------------------------------------------------------------------------- /sdl_gfx/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/ltmain.sh -------------------------------------------------------------------------------- /sdl_gfx/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/missing -------------------------------------------------------------------------------- /sdl_gfx/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/Makefile.in -------------------------------------------------------------------------------- /sdl_gfx/test/README: -------------------------------------------------------------------------------- 1 | SDL2_gfx Test Programs README 2 | 3 | -------------------------------------------------------------------------------- /sdl_gfx/test/TestGfx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/TestGfx.vcxproj -------------------------------------------------------------------------------- /sdl_gfx/test/TestImageFilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/TestImageFilter.vcxproj -------------------------------------------------------------------------------- /sdl_gfx/test/TestRotozoom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/TestRotozoom.vcxproj -------------------------------------------------------------------------------- /sdl_gfx/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/acinclude.m4 -------------------------------------------------------------------------------- /sdl_gfx/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/aclocal.m4 -------------------------------------------------------------------------------- /sdl_gfx/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/autogen.sh -------------------------------------------------------------------------------- /sdl_gfx/test/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/config.guess -------------------------------------------------------------------------------- /sdl_gfx/test/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/config.sub -------------------------------------------------------------------------------- /sdl_gfx/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/configure -------------------------------------------------------------------------------- /sdl_gfx/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/configure.in -------------------------------------------------------------------------------- /sdl_gfx/test/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/install-sh -------------------------------------------------------------------------------- /sdl_gfx/test/sample16x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample16x16.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/sample24-box.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample24-box.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/sample24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample24.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/sample2x2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample2x2.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/sample3x3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample3x3.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/sample8-box.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample8-box.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/sample8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/sample8.bmp -------------------------------------------------------------------------------- /sdl_gfx/test/testgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/testgfx.c -------------------------------------------------------------------------------- /sdl_gfx/test/testimagefilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/testimagefilter.c -------------------------------------------------------------------------------- /sdl_gfx/test/testrotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/sdl_code_edit/HEAD/sdl_gfx/test/testrotozoom.c --------------------------------------------------------------------------------