├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bin ├── Media │ └── tex │ │ ├── Mandelbrot.dds │ │ └── image.dds └── Shaders │ ├── glsl │ ├── cubes_gl_bindless_fs.glsl │ ├── cubes_gl_bindless_indirect_fs.glsl │ ├── cubes_gl_bindless_indirect_vs.glsl │ ├── cubes_gl_bindless_vs.glsl │ ├── cubes_gl_buffer_range_fs.glsl │ ├── cubes_gl_buffer_range_vs.glsl │ ├── cubes_gl_buffer_storage_fs.glsl │ ├── cubes_gl_buffer_storage_vs.glsl │ ├── cubes_gl_dynamic_buffer_fs.glsl │ ├── cubes_gl_dynamic_buffer_vs.glsl │ ├── cubes_gl_map_fs.glsl │ ├── cubes_gl_map_vs.glsl │ ├── cubes_gl_multi_draw_fs.glsl │ ├── cubes_gl_multi_draw_vs.glsl │ ├── cubes_gl_tex_coord_fs.glsl │ ├── cubes_gl_tex_coord_vs.glsl │ ├── cubes_gl_uniform_fs.glsl │ ├── cubes_gl_uniform_vs.glsl │ ├── streaming_vb_gl_fs.glsl │ ├── streaming_vb_gl_vs.glsl │ ├── textures_gl_bindless_fs.glsl │ ├── textures_gl_bindless_multidraw_fs.glsl │ ├── textures_gl_bindless_multidraw_vs.glsl │ ├── textures_gl_bindless_vs.glsl │ ├── textures_gl_naive_fs.glsl │ ├── textures_gl_naive_uniform_fs.glsl │ ├── textures_gl_naive_uniform_vs.glsl │ ├── textures_gl_naive_vs.glsl │ ├── textures_gl_notex_fs.glsl │ ├── textures_gl_notex_uniform_fs.glsl │ ├── textures_gl_notex_uniform_vs.glsl │ ├── textures_gl_notex_vs.glsl │ ├── textures_gl_sparse_bindless_texture_array_fs.glsl │ ├── textures_gl_sparse_bindless_texture_array_multidraw_fs.glsl │ ├── textures_gl_sparse_bindless_texture_array_multidraw_vs.glsl │ ├── textures_gl_sparse_bindless_texture_array_vs.glsl │ ├── textures_gl_texture_array_fs.glsl │ ├── textures_gl_texture_array_multidraw_fs.glsl │ ├── textures_gl_texture_array_multidraw_vs.glsl │ ├── textures_gl_texture_array_uniform_fs.glsl │ ├── textures_gl_texture_array_uniform_vs.glsl │ └── textures_gl_texture_array_vs.glsl │ └── hlsl │ ├── cubes_d3d11_naive_ps.hlsl │ ├── cubes_d3d11_naive_vs.hlsl │ ├── streaming_vb_d3d11_ps.hlsl │ ├── streaming_vb_d3d11_vs.hlsl │ ├── textures_d3d11_naive_ps.hlsl │ └── textures_d3d11_naive_vs.hlsl ├── linux_perf_numbers.pdf ├── perfnumbers.txt ├── src ├── CMakeLists.txt ├── GL │ ├── glcorearb.h │ ├── glext.h │ ├── glextensions.cpp │ ├── glextensions.h │ ├── glextensions.inl │ └── wglext.h ├── framework │ ├── apitest.cpp │ ├── appstate.cpp │ ├── appstate.h │ ├── buffer.cpp │ ├── buffer.h │ ├── bufferlock.cpp │ ├── bufferlock.h │ ├── console.cpp │ ├── console.h │ ├── dds_helper.h │ ├── factory.cpp │ ├── factory.h │ ├── gfx.h │ ├── gfx_dx11.cpp │ ├── gfx_dx11.h │ ├── gfx_gl.cpp │ ├── gfx_gl.h │ ├── mathlib.h │ ├── options.cpp │ ├── options.h │ ├── os.cpp │ ├── os.h │ ├── sparse_bindless_texarray.cpp │ ├── sparse_bindless_texarray.h │ ├── timer.cpp │ └── timer.h ├── pch.cpp ├── pch.h ├── problems │ ├── dynamicstreaming.cpp │ ├── dynamicstreaming.h │ ├── null.cpp │ ├── null.h │ ├── problem.cpp │ ├── problem.h │ ├── texturedquads.cpp │ ├── texturedquads.h │ ├── untexturedobjects.cpp │ └── untexturedobjects.h └── solutions │ ├── dynamicstreaming │ ├── d3d11 │ │ ├── mapnooverwrite.cpp │ │ ├── mapnooverwrite.h │ │ ├── updatesubresource.cpp │ │ └── updatesubresource.h │ └── gl │ │ ├── buffersubdata.cpp │ │ ├── buffersubdata.h │ │ ├── mappersistent.cpp │ │ ├── mappersistent.h │ │ ├── mapunsynchronized.cpp │ │ └── mapunsynchronized.h │ ├── dynamicstreamingsoln.cpp │ ├── dynamicstreamingsoln.h │ ├── nullsoln.cpp │ ├── nullsoln.h │ ├── solution.cpp │ ├── solution.h │ ├── texturedquads │ ├── d3d11 │ │ ├── naive.cpp │ │ └── naive.h │ └── gl │ │ ├── bindless.cpp │ │ ├── bindless.h │ │ ├── bindlessmultidraw.cpp │ │ ├── bindlessmultidraw.h │ │ ├── naive.cpp │ │ ├── naive.h │ │ ├── naiveuniform.cpp │ │ ├── naiveuniform.h │ │ ├── notex.cpp │ │ ├── notex.h │ │ ├── notexuniform.cpp │ │ ├── notexuniform.h │ │ ├── sparsebindlesstexturearray.cpp │ │ ├── sparsebindlesstexturearray.h │ │ ├── sparsebindlesstexturearraymultidraw.cpp │ │ ├── sparsebindlesstexturearraymultidraw.h │ │ ├── texturearray.cpp │ │ ├── texturearray.h │ │ ├── texturearraymultidraw.cpp │ │ ├── texturearraymultidraw.h │ │ ├── texturearraymultidrawbuffer.cpp │ │ ├── texturearraymultidrawbuffer.h │ │ ├── texturearrayuniform.cpp │ │ └── texturearrayuniform.h │ ├── texturedquadssoln.cpp │ ├── texturedquadssoln.h │ ├── untexturedobjects │ ├── d3d11 │ │ ├── naive.cpp │ │ └── naive.h │ └── gl │ │ ├── bindless.cpp │ │ ├── bindless.h │ │ ├── bindlessindirect.cpp │ │ ├── bindlessindirect.h │ │ ├── bufferrange.cpp │ │ ├── bufferrange.h │ │ ├── bufferstorage.cpp │ │ ├── bufferstorage.h │ │ ├── drawloop.cpp │ │ ├── drawloop.h │ │ ├── dynamicbuffer.cpp │ │ ├── dynamicbuffer.h │ │ ├── mappersistent.cpp │ │ ├── mappersistent.h │ │ ├── mapunsynchronized.cpp │ │ ├── mapunsynchronized.h │ │ ├── multidraw.cpp │ │ ├── multidraw.h │ │ ├── multidrawbuffer.cpp │ │ ├── multidrawbuffer.h │ │ ├── texcoord.cpp │ │ ├── texcoord.h │ │ ├── uniform.cpp │ │ └── uniform.h │ ├── untexturedobjectssoln.cpp │ └── untexturedobjectssoln.h └── thirdparty ├── Microsoft └── D3D │ ├── LICENSE │ ├── arm │ └── d3dcompiler_46.dll │ ├── x64 │ ├── d3dcompiler_46.dll │ ├── d3dcompiler_47.dll │ ├── d3dcsx_46.dll │ └── d3dcsx_47.dll │ └── x86 │ ├── d3dcompiler_46.dll │ ├── d3dcompiler_47.dll │ ├── d3dcsx_46.dll │ └── d3dcsx_47.dll └── SDL2-2.0.1 ├── Android.mk ├── BUGS.txt ├── CMakeLists.txt ├── COPYING.txt ├── CREDITS.txt ├── INSTALL.txt ├── Makefile.in ├── Makefile.minimal ├── Makefile.pandora ├── Makefile.psp ├── Makefile.wiz ├── README-SDL.txt ├── README-android.txt ├── README-cmake.txt ├── README-directfb.txt ├── README-gesture.txt ├── README-hg.txt ├── README-ios.txt ├── README-macosx.txt ├── README-pandora.txt ├── README-platforms.txt ├── README-porting.txt ├── README-psp.txt ├── README-raspberrypi.txt ├── README-touch.txt ├── README-wince.txt ├── README.txt ├── SDL2.spec ├── SDL2.spec.in ├── TODO.txt ├── VisualC.html ├── VisualC ├── SDL │ ├── SDL_VS2008.vcproj │ ├── SDL_VS2010.vcxproj │ ├── SDL_VS2012.vcxproj │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.exp │ │ │ ├── SDL2.lastbuildstate │ │ │ ├── SDL2.lib │ │ │ ├── SDL2.write.1.tlog │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ ├── rc.write.1.tlog │ │ │ ├── vc110.idb │ │ │ └── version.res │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.exp │ │ │ ├── SDL2.lastbuildstate │ │ │ ├── SDL2.lib │ │ │ ├── SDL2.write.1.tlog │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ ├── rc.write.1.tlog │ │ │ └── version.res │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── SDL2.exp │ │ ├── SDL2.lastbuildstate │ │ ├── SDL2.lib │ │ ├── SDL2.write.1.tlog │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ └── version.res │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── SDL2.exp │ │ ├── SDL2.lastbuildstate │ │ ├── SDL2.lib │ │ ├── SDL2.write.1.tlog │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ └── version.res ├── SDL_VS2008.sln ├── SDL_VS2010.sln ├── SDL_VS2010EE.sln ├── SDL_VS2012.sln ├── SDL_VS2012EE.sln ├── SDLmain │ ├── SDLmain_VS2008.vcproj │ ├── SDLmain_VS2010.vcxproj │ ├── SDLmain_VS2012.vcxproj │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── SDL2main.lastbuildstate │ │ │ ├── SDL2main.lib │ │ │ ├── cl.command.1.tlog │ │ │ └── lib.command.1.tlog │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── SDL2main.lastbuildstate │ │ │ ├── SDL2main.lib │ │ │ ├── cl.command.1.tlog │ │ │ └── lib.command.1.tlog │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ ├── SDL2main.lastbuildstate │ │ ├── SDL2main.lib │ │ ├── cl.command.1.tlog │ │ └── lib.command.1.tlog │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ ├── SDL2main.lastbuildstate │ │ ├── SDL2main.lib │ │ ├── cl.command.1.tlog │ │ └── lib.command.1.tlog ├── SDLtest │ ├── SDLtest_VS2008.vcproj │ ├── SDLtest_VS2010.vcxproj │ ├── SDLtest_VS2012.vcxproj │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── SDL2test.lastbuildstate │ │ │ ├── SDL2test.lib │ │ │ ├── cl.command.1.tlog │ │ │ └── lib.command.1.tlog │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── SDL2test.lastbuildstate │ │ │ ├── SDL2test.lib │ │ │ ├── cl.command.1.tlog │ │ │ └── lib.command.1.tlog │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ ├── SDL2test.lastbuildstate │ │ ├── SDL2test.lib │ │ ├── cl.command.1.tlog │ │ └── lib.command.1.tlog │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ ├── SDL2test.lastbuildstate │ │ ├── SDL2test.lib │ │ ├── cl.command.1.tlog │ │ └── lib.command.1.tlog ├── clean.sh └── tests │ ├── checkkeys │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── checkkeys.exe │ │ │ ├── checkkeys.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── checkkeys.exe │ │ │ ├── checkkeys.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ ├── checkkeys_VS2008.vcproj │ ├── checkkeys_VS2010.vcxproj │ ├── checkkeys_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── checkkeys.exe │ │ ├── checkkeys.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── loopwave │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── loopwave.exe │ │ │ ├── loopwave.lastbuildstate │ │ │ ├── sample.wav │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── loopwave.exe │ │ │ ├── loopwave.lastbuildstate │ │ │ └── sample.wav │ ├── loopwave_VS2008.vcproj │ ├── loopwave_VS2010.vcxproj │ ├── loopwave_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── loopwave.exe │ │ ├── loopwave.lastbuildstate │ │ └── sample.wav │ ├── testatomic │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testatomic.exe │ │ │ ├── testatomic.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testatomic.exe │ │ │ └── testatomic.lastbuildstate │ ├── testatomic_VS2008.vcproj │ ├── testatomic_VS2010.vcxproj │ ├── testatomic_VS2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testatomic.exe │ │ └── testatomic.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testatomic.exe │ │ └── testatomic.lastbuildstate │ ├── testautomation │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testautomation.exe │ │ │ ├── testautomation.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testautomation.exe │ │ │ └── testautomation.lastbuildstate │ ├── testautomation_VS2008.vcproj │ ├── testautomation_vs2010.vcxproj │ ├── testautomation_vs2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testautomation.exe │ │ └── testautomation.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testautomation.exe │ │ └── testautomation.lastbuildstate │ ├── testdraw2 │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testdraw2.exe │ │ │ ├── testdraw2.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testdraw2.exe │ │ │ └── testdraw2.lastbuildstate │ ├── testdraw2_VS2008.vcproj │ ├── testdraw2_VS2010.vcxproj │ ├── testdraw2_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testdraw2.exe │ │ └── testdraw2.lastbuildstate │ ├── testfile │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testfile.exe │ │ │ ├── testfile.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testfile.exe │ │ │ └── testfile.lastbuildstate │ ├── testfile_VS2008.vcproj │ ├── testfile_VS2010.vcxproj │ ├── testfile_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testfile.exe │ │ └── testfile.lastbuildstate │ ├── testgamecontroller │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testgamecontroller.exe │ │ │ ├── testgamecontroller.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testgamecontroller.exe │ │ │ └── testgamecontroller.lastbuildstate │ ├── testgamecontroller_VS2010.vcxproj │ ├── testgamecontroller_VS2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testgamecontroller.exe │ │ └── testgamecontroller.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testgamecontroller.exe │ │ └── testgamecontroller.lastbuildstate │ ├── testgesture │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testgesture.exe │ │ │ ├── testgesture.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testgesture.exe │ │ │ └── testgesture.lastbuildstate │ ├── testgesture_VS2008.vcproj │ ├── testgesture_VS2010.vcxproj │ ├── testgesture_VS2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testgesture.exe │ │ └── testgesture.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testgesture.exe │ │ └── testgesture.lastbuildstate │ ├── testgl2 │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testgl2.exe │ │ │ ├── testgl2.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testgl2.exe │ │ │ └── testgl2.lastbuildstate │ ├── testgl2_VS2008.vcproj │ ├── testgl2_VS2010.vcxproj │ ├── testgl2_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testgl2.exe │ │ └── testgl2.lastbuildstate │ ├── testjoystick │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testjoystick.exe │ │ │ ├── testjoystick.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testjoystick.exe │ │ │ └── testjoystick.lastbuildstate │ ├── testjoystick_VS2008.vcproj │ ├── testjoystick_VS2010.vcxproj │ ├── testjoystick_VS2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testjoystick.exe │ │ └── testjoystick.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testjoystick.exe │ │ └── testjoystick.lastbuildstate │ ├── testoverlay2 │ ├── testoverlay2_VS2008.vcproj │ ├── testoverlay2_VS2010.vcxproj │ └── testoverlay2_VS2012.vcxproj │ ├── testplatform │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testplatform.exe │ │ │ ├── testplatform.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testplatform.exe │ │ │ └── testplatform.lastbuildstate │ ├── testplatform_VS2008.vcproj │ ├── testplatform_VS2010.vcxproj │ ├── testplatform_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testplatform.exe │ │ └── testplatform.lastbuildstate │ ├── testpower │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testpower.exe │ │ │ ├── testpower.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testpower.exe │ │ │ └── testpower.lastbuildstate │ ├── testpower_VS2008.vcproj │ ├── testpower_VS2010.vcxproj │ ├── testpower_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testpower.exe │ │ └── testpower.lastbuildstate │ ├── testrendertarget │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── icon.bmp │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── sample.bmp │ │ │ ├── testrendertarget.exe │ │ │ ├── testrendertarget.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── icon.bmp │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── sample.bmp │ │ │ ├── testrendertarget.exe │ │ │ └── testrendertarget.lastbuildstate │ ├── testrendertarget_VS2008.vcproj │ ├── testrendertarget_VS2010.vcxproj │ ├── testrendertarget_VS2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── icon.bmp │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── sample.bmp │ │ ├── testrendertarget.exe │ │ └── testrendertarget.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── icon.bmp │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── sample.bmp │ │ ├── testrendertarget.exe │ │ └── testrendertarget.lastbuildstate │ ├── testscale │ ├── Win32 │ │ ├── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── icon.bmp │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── sample.bmp │ │ │ ├── testscale.exe │ │ │ ├── testscale.lastbuildstate │ │ │ └── vc110.idb │ │ └── Release │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── icon.bmp │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── sample.bmp │ │ │ ├── testscale.exe │ │ │ └── testscale.lastbuildstate │ ├── testscale_VS2008.vcproj │ ├── testscale_VS2010.vcxproj │ ├── testscale_VS2012.vcxproj │ └── x64 │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── icon.bmp │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── sample.bmp │ │ ├── testscale.exe │ │ └── testscale.lastbuildstate │ │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── icon.bmp │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── sample.bmp │ │ ├── testscale.exe │ │ └── testscale.lastbuildstate │ ├── testshape │ ├── Win32 │ │ └── Debug │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SDL2.dll │ │ │ ├── cl.command.1.tlog │ │ │ ├── link-cvtres.read.1.tlog │ │ │ ├── link-cvtres.write.1.tlog │ │ │ ├── link-rc.read.1.tlog │ │ │ ├── link-rc.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── testshape.exe │ │ │ ├── testshape.lastbuildstate │ │ │ └── vc110.idb │ ├── testshape_VS2008.vcproj │ ├── testshape_VS2010.vcxproj │ ├── testshape_VS2012.vcxproj │ └── x64 │ │ └── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testshape.exe │ │ └── testshape.lastbuildstate │ └── testsprite2 │ ├── Win32 │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── icon.bmp │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testsprite2.exe │ │ ├── testsprite2.lastbuildstate │ │ └── vc110.idb │ └── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDL2.dll │ │ ├── cl.command.1.tlog │ │ ├── icon.bmp │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── testsprite2.exe │ │ └── testsprite2.lastbuildstate │ ├── testsprite2_VS2008.vcproj │ ├── testsprite2_VS2010.vcxproj │ ├── testsprite2_VS2012.vcxproj │ └── x64 │ └── Debug │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── SDL2.dll │ ├── cl.command.1.tlog │ ├── icon.bmp │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link-rc.read.1.tlog │ ├── link-rc.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── testsprite2.exe │ └── testsprite2.lastbuildstate ├── WhatsNew.txt ├── Xcode-iOS ├── Demos │ ├── Default.png │ ├── Demos.xcodeproj │ │ └── project.pbxproj │ ├── Icon.png │ ├── Info.plist │ ├── README │ ├── data │ │ ├── bitmapfont │ │ │ ├── kromasky_16x16.bmp │ │ │ └── license.txt │ │ ├── drums │ │ │ ├── ds_brush_snare.wav │ │ │ ├── ds_china.wav │ │ │ ├── ds_kick_big_amb.wav │ │ │ └── ds_loose_skin_mute.wav │ │ ├── icon.bmp │ │ ├── ship.bmp │ │ ├── space.bmp │ │ └── stroke.bmp │ └── src │ │ ├── accelerometer.c │ │ ├── common.c │ │ ├── common.h │ │ ├── fireworks.c │ │ ├── happy.c │ │ ├── keyboard.c │ │ ├── mixer.c │ │ ├── rectangles.c │ │ └── touch.c ├── SDL │ └── SDL.xcodeproj │ │ └── project.pbxproj ├── SDLtest │ └── SDL2test.xcodeproj │ │ └── project.pbxproj ├── Template │ └── SDL iOS Application │ │ ├── Default.png │ │ ├── Icon.png │ │ ├── Info.plist │ │ ├── ___PROJECTNAME___.xcodeproj │ │ ├── TemplateIcon.icns │ │ ├── TemplateInfo.plist │ │ └── project.pbxproj │ │ └── main.c └── Test │ ├── Info.plist │ ├── README │ └── TestiPhoneOS.xcodeproj │ └── project.pbxproj ├── Xcode ├── SDL │ ├── Info-Framework.plist │ ├── SDL.xcodeproj │ │ └── project.pbxproj │ └── pkg-support │ │ ├── SDL.info │ │ ├── codesign-frameworks.sh │ │ ├── resources │ │ ├── License.txt │ │ ├── ReadMe.txt │ │ └── SDL_DS_Store │ │ └── sdl_logo.pdf ├── SDLTest │ └── SDLTest.xcodeproj │ │ └── project.pbxproj └── XcodeDocSet │ └── Doxyfile ├── acinclude ├── ac_check_define.m4 ├── alsa.m4 ├── ax_check_compiler_flags.m4 ├── ax_gcc_archflag.m4 ├── ax_gcc_x86_cpuid.m4.htm ├── esd.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── android-project ├── AndroidManifest.xml ├── ant.properties ├── build.properties ├── build.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── src │ │ ├── Android.mk │ │ └── Android_static.mk ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── org │ └── libsdl │ └── app │ └── SDLActivity.java ├── autogen.sh ├── build-scripts ├── androidbuild.sh ├── config.guess ├── config.sub ├── g++-fat.sh ├── gcc-fat.sh ├── install-sh ├── iosbuild.sh ├── ltmain.sh ├── mkinstalldirs ├── raspberrypi-buildbot.sh ├── showrev.sh ├── strip_fPIC.sh └── updaterev.sh ├── cmake ├── macros.cmake └── sdlchecks.cmake ├── configure ├── configure.in ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── libsdl2-dev.install ├── libsdl2-dev.manpages ├── libsdl2.install ├── rules ├── sdl2-config.1 ├── source │ └── format └── watch ├── 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_minimal.h ├── SDL_config_pandora.h ├── SDL_config_psp.h ├── SDL_config_windows.h ├── SDL_config_wiz.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_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 └── doxyfile ├── sdl2-config.in ├── sdl2.m4 ├── sdl2.pc.in ├── src ├── SDL.c ├── SDL_assert.c ├── SDL_assert_c.h ├── SDL_error.c ├── SDL_error_c.h ├── SDL_hints.c ├── SDL_log.c ├── atomic │ ├── SDL_atomic.c │ └── SDL_spinlock.c ├── audio │ ├── SDL_audio.c │ ├── SDL_audio_c.h │ ├── SDL_audiocvt.c │ ├── SDL_audiodev.c │ ├── SDL_audiodev_c.h │ ├── SDL_audiomem.h │ ├── SDL_audiotypecvt.c │ ├── SDL_mixer.c │ ├── SDL_sysaudio.h │ ├── SDL_wave.c │ ├── SDL_wave.h │ ├── alsa │ │ ├── SDL_alsa_audio.c │ │ └── SDL_alsa_audio.h │ ├── android │ │ ├── SDL_androidaudio.c │ │ └── SDL_androidaudio.h │ ├── arts │ │ ├── SDL_artsaudio.c │ │ └── SDL_artsaudio.h │ ├── baudio │ │ ├── SDL_beaudio.cc │ │ └── SDL_beaudio.h │ ├── bsd │ │ ├── SDL_bsdaudio.c │ │ └── SDL_bsdaudio.h │ ├── coreaudio │ │ ├── SDL_coreaudio.c │ │ └── SDL_coreaudio.h │ ├── directsound │ │ ├── SDL_directsound.c │ │ ├── SDL_directsound.h │ │ └── directx.h │ ├── disk │ │ ├── SDL_diskaudio.c │ │ └── SDL_diskaudio.h │ ├── dsp │ │ ├── SDL_dspaudio.c │ │ └── SDL_dspaudio.h │ ├── dummy │ │ ├── SDL_dummyaudio.c │ │ └── SDL_dummyaudio.h │ ├── esd │ │ ├── SDL_esdaudio.c │ │ └── SDL_esdaudio.h │ ├── fusionsound │ │ ├── SDL_fsaudio.c │ │ └── SDL_fsaudio.h │ ├── nas │ │ ├── SDL_nasaudio.c │ │ └── SDL_nasaudio.h │ ├── paudio │ │ ├── SDL_paudio.c │ │ └── SDL_paudio.h │ ├── psp │ │ ├── SDL_pspaudio.c │ │ └── SDL_pspaudio.h │ ├── pulseaudio │ │ ├── SDL_pulseaudio.c │ │ └── SDL_pulseaudio.h │ ├── qsa │ │ ├── SDL_qsa_audio.c │ │ └── SDL_qsa_audio.h │ ├── sdlgenaudiocvt.pl │ ├── sndio │ │ ├── SDL_sndioaudio.c │ │ └── SDL_sndioaudio.h │ ├── sun │ │ ├── SDL_sunaudio.c │ │ └── SDL_sunaudio.h │ ├── winmm │ │ ├── SDL_winmm.c │ │ └── SDL_winmm.h │ └── xaudio2 │ │ └── SDL_xaudio2.c ├── core │ ├── android │ │ ├── SDL_android.c │ │ └── SDL_android.h │ ├── linux │ │ ├── SDL_udev.c │ │ └── SDL_udev.h │ └── windows │ │ ├── SDL_windows.c │ │ └── SDL_windows.h ├── cpuinfo │ └── SDL_cpuinfo.c ├── events │ ├── SDL_clipboardevents.c │ ├── SDL_clipboardevents_c.h │ ├── SDL_dropevents.c │ ├── SDL_dropevents_c.h │ ├── SDL_events.c │ ├── SDL_events_c.h │ ├── SDL_gesture.c │ ├── SDL_gesture_c.h │ ├── SDL_keyboard.c │ ├── SDL_keyboard_c.h │ ├── SDL_mouse.c │ ├── SDL_mouse_c.h │ ├── SDL_quit.c │ ├── SDL_sysevents.h │ ├── SDL_touch.c │ ├── SDL_touch_c.h │ ├── SDL_windowevents.c │ ├── SDL_windowevents_c.h │ ├── blank_cursor.h │ ├── default_cursor.h │ ├── scancodes_darwin.h │ ├── scancodes_linux.h │ ├── scancodes_windows.h │ └── scancodes_xfree86.h ├── file │ ├── SDL_rwops.c │ └── cocoa │ │ ├── SDL_rwopsbundlesupport.h │ │ └── SDL_rwopsbundlesupport.m ├── filesystem │ ├── beos │ │ └── SDL_sysfilesystem.cc │ ├── cocoa │ │ └── SDL_sysfilesystem.m │ ├── dummy │ │ └── SDL_sysfilesystem.c │ ├── unix │ │ └── SDL_sysfilesystem.c │ └── windows │ │ └── SDL_sysfilesystem.c ├── haptic │ ├── SDL_haptic.c │ ├── SDL_haptic_c.h │ ├── SDL_syshaptic.h │ ├── darwin │ │ └── SDL_syshaptic.c │ ├── dummy │ │ └── SDL_syshaptic.c │ ├── linux │ │ └── SDL_syshaptic.c │ └── windows │ │ └── SDL_syshaptic.c ├── input │ └── evdev │ │ ├── SDL_evdev.c │ │ └── SDL_evdev.h ├── joystick │ ├── SDL_gamecontroller.c │ ├── SDL_gamecontrollerdb.h │ ├── SDL_joystick.c │ ├── SDL_joystick_c.h │ ├── SDL_sysjoystick.h │ ├── android │ │ └── SDL_sysjoystick.c │ ├── beos │ │ └── SDL_bejoystick.cc │ ├── bsd │ │ └── SDL_sysjoystick.c │ ├── darwin │ │ ├── SDL_sysjoystick.c │ │ └── SDL_sysjoystick_c.h │ ├── dummy │ │ └── SDL_sysjoystick.c │ ├── iphoneos │ │ ├── SDLUIAccelerationDelegate.h │ │ ├── SDLUIAccelerationDelegate.m │ │ └── SDL_sysjoystick.m │ ├── linux │ │ ├── SDL_sysjoystick.c │ │ └── SDL_sysjoystick_c.h │ ├── psp │ │ └── SDL_sysjoystick.c │ ├── sort_controllers.py │ └── windows │ │ ├── SDL_dxjoystick.c │ │ ├── SDL_dxjoystick_c.h │ │ └── SDL_mmjoystick.c ├── libm │ ├── e_atan2.c │ ├── e_log.c │ ├── e_pow.c │ ├── e_rem_pio2.c │ ├── e_sqrt.c │ ├── k_cos.c │ ├── k_rem_pio2.c │ ├── k_sin.c │ ├── math_libm.h │ ├── math_private.h │ ├── s_atan.c │ ├── s_copysign.c │ ├── s_cos.c │ ├── s_fabs.c │ ├── s_floor.c │ ├── s_scalbn.c │ └── s_sin.c ├── loadso │ ├── beos │ │ └── SDL_sysloadso.c │ ├── dlopen │ │ └── SDL_sysloadso.c │ ├── dummy │ │ └── SDL_sysloadso.c │ └── windows │ │ └── SDL_sysloadso.c ├── main │ ├── android │ │ └── SDL_android_main.c │ ├── beos │ │ ├── SDL_BApp.h │ │ ├── SDL_BeApp.cc │ │ └── SDL_BeApp.h │ ├── dummy │ │ └── SDL_dummy_main.c │ ├── psp │ │ └── SDL_psp_main.c │ └── windows │ │ ├── SDL_windows_main.c │ │ └── version.rc ├── power │ ├── SDL_power.c │ ├── android │ │ └── SDL_syspower.c │ ├── beos │ │ └── SDL_syspower.c │ ├── linux │ │ └── SDL_syspower.c │ ├── macosx │ │ └── SDL_syspower.c │ ├── psp │ │ └── SDL_syspower.c │ ├── uikit │ │ ├── SDL_syspower.h │ │ └── SDL_syspower.m │ └── windows │ │ └── SDL_syspower.c ├── render │ ├── SDL_render.c │ ├── SDL_sysrender.h │ ├── SDL_yuv_mmx.c │ ├── SDL_yuv_sw.c │ ├── SDL_yuv_sw_c.h │ ├── direct3d │ │ └── SDL_render_d3d.c │ ├── mmx.h │ ├── opengl │ │ ├── SDL_glfuncs.h │ │ ├── SDL_render_gl.c │ │ ├── SDL_shaders_gl.c │ │ └── SDL_shaders_gl.h │ ├── opengles │ │ ├── SDL_glesfuncs.h │ │ └── SDL_render_gles.c │ ├── opengles2 │ │ ├── SDL_gles2funcs.h │ │ ├── SDL_render_gles2.c │ │ ├── SDL_shaders_gles2.c │ │ └── SDL_shaders_gles2.h │ ├── psp │ │ └── SDL_render_psp.c │ └── software │ │ ├── SDL_blendfillrect.c │ │ ├── SDL_blendfillrect.h │ │ ├── SDL_blendline.c │ │ ├── SDL_blendline.h │ │ ├── SDL_blendpoint.c │ │ ├── SDL_blendpoint.h │ │ ├── SDL_draw.h │ │ ├── SDL_drawline.c │ │ ├── SDL_drawline.h │ │ ├── SDL_drawpoint.c │ │ ├── SDL_drawpoint.h │ │ ├── SDL_render_sw.c │ │ ├── SDL_render_sw_c.h │ │ ├── SDL_rotate.c │ │ └── SDL_rotate.h ├── stdlib │ ├── SDL_getenv.c │ ├── SDL_iconv.c │ ├── SDL_malloc.c │ ├── SDL_qsort.c │ ├── SDL_stdlib.c │ └── SDL_string.c ├── test │ ├── SDL_test_assert.c │ ├── SDL_test_common.c │ ├── SDL_test_compare.c │ ├── SDL_test_crc32.c │ ├── SDL_test_font.c │ ├── SDL_test_fuzzer.c │ ├── SDL_test_harness.c │ ├── SDL_test_imageBlit.c │ ├── SDL_test_imageBlitBlend.c │ ├── SDL_test_imageFace.c │ ├── SDL_test_imagePrimitives.c │ ├── SDL_test_imagePrimitivesBlend.c │ ├── SDL_test_log.c │ ├── SDL_test_md5.c │ └── SDL_test_random.c ├── thread │ ├── SDL_systhread.h │ ├── SDL_thread.c │ ├── SDL_thread_c.h │ ├── beos │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c │ ├── generic │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c │ ├── psp │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ ├── pthread │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c │ └── windows │ │ ├── SDL_sysmutex.c │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c ├── timer │ ├── SDL_timer.c │ ├── SDL_timer_c.h │ ├── beos │ │ └── SDL_systimer.c │ ├── dummy │ │ └── SDL_systimer.c │ ├── psp │ │ └── SDL_systimer.c │ ├── unix │ │ └── SDL_systimer.c │ └── windows │ │ └── SDL_systimer.c └── video │ ├── SDL_RLEaccel.c │ ├── SDL_RLEaccel_c.h │ ├── SDL_blit.c │ ├── SDL_blit.h │ ├── SDL_blit_0.c │ ├── SDL_blit_1.c │ ├── SDL_blit_A.c │ ├── SDL_blit_N.c │ ├── SDL_blit_auto.c │ ├── SDL_blit_auto.h │ ├── SDL_blit_copy.c │ ├── SDL_blit_copy.h │ ├── SDL_blit_slow.c │ ├── SDL_blit_slow.h │ ├── SDL_bmp.c │ ├── SDL_clipboard.c │ ├── SDL_egl.c │ ├── SDL_egl.h │ ├── SDL_fillrect.c │ ├── SDL_pixels.c │ ├── SDL_pixels_c.h │ ├── SDL_rect.c │ ├── SDL_rect_c.h │ ├── SDL_shape.c │ ├── SDL_shape_internals.h │ ├── SDL_stretch.c │ ├── SDL_surface.c │ ├── SDL_sysvideo.h │ ├── SDL_video.c │ ├── android │ ├── SDL_androidclipboard.c │ ├── SDL_androidclipboard.h │ ├── SDL_androidevents.c │ ├── SDL_androidevents.h │ ├── SDL_androidgl.c │ ├── SDL_androidkeyboard.c │ ├── SDL_androidkeyboard.h │ ├── SDL_androidtouch.c │ ├── SDL_androidtouch.h │ ├── SDL_androidvideo.c │ ├── SDL_androidvideo.h │ ├── SDL_androidwindow.c │ └── SDL_androidwindow.h │ ├── bwindow │ ├── SDL_BWin.h │ ├── SDL_bclipboard.cc │ ├── SDL_bclipboard.h │ ├── SDL_bevents.cc │ ├── SDL_bevents.h │ ├── SDL_bframebuffer.cc │ ├── SDL_bframebuffer.h │ ├── SDL_bkeyboard.cc │ ├── SDL_bkeyboard.h │ ├── SDL_bmodes.cc │ ├── SDL_bmodes.h │ ├── SDL_bopengl.cc │ ├── SDL_bopengl.h │ ├── SDL_bvideo.cc │ ├── SDL_bvideo.h │ ├── SDL_bwindow.cc │ └── SDL_bwindow.h │ ├── cocoa │ ├── SDL_cocoaclipboard.h │ ├── SDL_cocoaclipboard.m │ ├── SDL_cocoaevents.h │ ├── SDL_cocoaevents.m │ ├── SDL_cocoakeyboard.h │ ├── SDL_cocoakeyboard.m │ ├── SDL_cocoamessagebox.h │ ├── SDL_cocoamessagebox.m │ ├── SDL_cocoamodes.h │ ├── SDL_cocoamodes.m │ ├── SDL_cocoamouse.h │ ├── SDL_cocoamouse.m │ ├── SDL_cocoamousetap.h │ ├── SDL_cocoamousetap.m │ ├── SDL_cocoaopengl.h │ ├── SDL_cocoaopengl.m │ ├── SDL_cocoashape.h │ ├── SDL_cocoashape.m │ ├── SDL_cocoavideo.h │ ├── SDL_cocoavideo.m │ ├── SDL_cocoawindow.h │ └── SDL_cocoawindow.m │ ├── directfb │ ├── SDL_DirectFB_WM.c │ ├── SDL_DirectFB_WM.h │ ├── SDL_DirectFB_dyn.c │ ├── SDL_DirectFB_dyn.h │ ├── SDL_DirectFB_events.c │ ├── SDL_DirectFB_events.h │ ├── SDL_DirectFB_modes.c │ ├── SDL_DirectFB_modes.h │ ├── SDL_DirectFB_mouse.c │ ├── SDL_DirectFB_mouse.h │ ├── SDL_DirectFB_opengl.c │ ├── SDL_DirectFB_opengl.h │ ├── SDL_DirectFB_render.c │ ├── SDL_DirectFB_render.h │ ├── SDL_DirectFB_shape.c │ ├── SDL_DirectFB_shape.h │ ├── SDL_DirectFB_video.c │ ├── SDL_DirectFB_video.h │ ├── SDL_DirectFB_window.c │ └── SDL_DirectFB_window.h │ ├── dummy │ ├── SDL_nullevents.c │ ├── SDL_nullevents_c.h │ ├── SDL_nullframebuffer.c │ ├── SDL_nullframebuffer_c.h │ ├── SDL_nullvideo.c │ └── SDL_nullvideo.h │ ├── pandora │ ├── SDL_pandora.c │ ├── SDL_pandora.h │ ├── SDL_pandora_events.c │ └── SDL_pandora_events.h │ ├── psp │ ├── SDL_pspevents.c │ ├── SDL_pspevents_c.h │ ├── SDL_pspgl.c │ ├── SDL_pspgl_c.h │ ├── SDL_pspmouse.c │ ├── SDL_pspmouse_c.h │ ├── SDL_pspvideo.c │ └── SDL_pspvideo.h │ ├── raspberry │ ├── SDL_rpievents.c │ ├── SDL_rpievents_c.h │ ├── SDL_rpimouse.c │ ├── SDL_rpimouse.h │ ├── SDL_rpiopengles.c │ ├── SDL_rpiopengles.h │ ├── SDL_rpivideo.c │ └── SDL_rpivideo.h │ ├── sdlgenblit.pl │ ├── uikit │ ├── SDL_uikitappdelegate.h │ ├── SDL_uikitappdelegate.m │ ├── SDL_uikitevents.h │ ├── SDL_uikitevents.m │ ├── SDL_uikitmessagebox.h │ ├── SDL_uikitmessagebox.m │ ├── SDL_uikitmodes.h │ ├── SDL_uikitmodes.m │ ├── SDL_uikitopengles.h │ ├── SDL_uikitopengles.m │ ├── SDL_uikitopenglview.h │ ├── SDL_uikitopenglview.m │ ├── SDL_uikitvideo.h │ ├── SDL_uikitvideo.m │ ├── SDL_uikitview.h │ ├── SDL_uikitview.m │ ├── SDL_uikitviewcontroller.h │ ├── SDL_uikitviewcontroller.m │ ├── SDL_uikitwindow.h │ ├── SDL_uikitwindow.m │ └── keyinfotable.h │ ├── windows │ ├── SDL_msctf.h │ ├── SDL_vkeys.h │ ├── SDL_windowsclipboard.c │ ├── SDL_windowsclipboard.h │ ├── SDL_windowsevents.c │ ├── SDL_windowsevents.h │ ├── SDL_windowsframebuffer.c │ ├── SDL_windowsframebuffer.h │ ├── SDL_windowskeyboard.c │ ├── SDL_windowskeyboard.h │ ├── SDL_windowsmessagebox.c │ ├── SDL_windowsmessagebox.h │ ├── SDL_windowsmodes.c │ ├── SDL_windowsmodes.h │ ├── SDL_windowsmouse.c │ ├── SDL_windowsmouse.h │ ├── SDL_windowsopengl.c │ ├── SDL_windowsopengl.h │ ├── SDL_windowsshape.c │ ├── SDL_windowsshape.h │ ├── SDL_windowsvideo.c │ ├── SDL_windowsvideo.h │ ├── SDL_windowswindow.c │ ├── SDL_windowswindow.h │ └── wmmsg.h │ └── x11 │ ├── SDL_x11clipboard.c │ ├── SDL_x11clipboard.h │ ├── SDL_x11dyn.c │ ├── SDL_x11dyn.h │ ├── SDL_x11events.c │ ├── SDL_x11events.h │ ├── SDL_x11framebuffer.c │ ├── SDL_x11framebuffer.h │ ├── SDL_x11keyboard.c │ ├── SDL_x11keyboard.h │ ├── SDL_x11messagebox.c │ ├── SDL_x11messagebox.h │ ├── SDL_x11modes.c │ ├── SDL_x11modes.h │ ├── SDL_x11mouse.c │ ├── SDL_x11mouse.h │ ├── SDL_x11opengl.c │ ├── SDL_x11opengl.h │ ├── SDL_x11opengles.c │ ├── SDL_x11opengles.h │ ├── SDL_x11shape.c │ ├── SDL_x11shape.h │ ├── SDL_x11sym.h │ ├── SDL_x11touch.c │ ├── SDL_x11touch.h │ ├── SDL_x11video.c │ ├── SDL_x11video.h │ ├── SDL_x11window.c │ ├── SDL_x11window.h │ ├── SDL_x11xinput2.c │ ├── SDL_x11xinput2.h │ ├── edid-parse.c │ ├── edid.h │ ├── imKStoUCS.c │ └── imKStoUCS.h └── test ├── COPYING ├── Makefile.in ├── README ├── acinclude.m4 ├── aclocal.m4 ├── autogen.sh ├── checkkeys.c ├── configure ├── configure.in ├── gcc-fat.sh ├── icon.bmp ├── loopwave.c ├── moose.dat ├── picture.xbm ├── relative_mode.markdown ├── sample.bmp ├── sample.wav ├── shapes ├── p01_shape24.bmp ├── p01_shape32alpha.bmp ├── p01_shape8.bmp ├── p02_shape24.bmp ├── p02_shape32alpha.bmp ├── p02_shape8.bmp ├── p03_shape24.bmp ├── p03_shape8.bmp ├── p04_shape1.bmp ├── p04_shape24.bmp ├── p04_shape32alpha.bmp ├── p04_shape8.bmp ├── p05_shape8.bmp ├── p06_shape1alpha.bmp ├── p06_shape24.bmp ├── p06_shape32alpha.bmp ├── p06_shape8.bmp ├── p07_shape24.bmp ├── p07_shape32alpha.bmp ├── p07_shape8.bmp ├── p08_shape24.bmp ├── p08_shape32alpha.bmp ├── p08_shape8.bmp ├── p09_shape24.bmp ├── p09_shape32alpha.bmp ├── p09_shape8.bmp ├── p10_shape1.bmp ├── p10_shape24.bmp ├── p10_shape32alpha.bmp ├── p10_shape8.bmp ├── p11_shape24.bmp ├── p11_shape32alpha.bmp ├── p11_shape8.bmp ├── p12_shape24.bmp ├── p12_shape8.bmp ├── p13_shape24.bmp ├── p13_shape32alpha.bmp ├── p13_shape8.bmp ├── p14_shape24.bmp ├── p14_shape8.bmp ├── p15_shape24.bmp ├── p15_shape32alpha.bmp ├── p15_shape8.bmp ├── p16_shape1.bmp ├── p16_shape24.bmp ├── p16_shape8.bmp ├── trollface_24.bmp └── trollface_32alpha.bmp ├── testatomic.c ├── testaudioinfo.c ├── testautomation.c ├── testautomation_audio.c ├── testautomation_clipboard.c ├── testautomation_events.c ├── testautomation_keyboard.c ├── testautomation_main.c ├── testautomation_mouse.c ├── testautomation_pixels.c ├── testautomation_platform.c ├── testautomation_rect.c ├── testautomation_render.c ├── testautomation_rwops.c ├── testautomation_sdltest.c ├── testautomation_stdlib.c ├── testautomation_suites.h ├── testautomation_surface.c ├── testautomation_syswm.c ├── testautomation_timer.c ├── testautomation_video.c ├── testdraw2.c ├── testdrawchessboard.c ├── testdropfile.c ├── testerror.c ├── testfile.c ├── testfilesystem.c ├── testgamecontroller.c ├── testgesture.c ├── testgl2.c ├── testgles.c ├── testhaptic.c ├── testiconv.c ├── testime.c ├── testintersections.c ├── testjoystick.c ├── testkeys.c ├── testloadso.c ├── testlock.c ├── testmessage.c ├── testmultiaudio.c ├── testnative.c ├── testnative.h ├── testnativecocoa.m ├── testnativew32.c ├── testnativex11.c ├── testoverlay2.c ├── testplatform.c ├── testpower.c ├── testrelative.c ├── testrendercopyex.c ├── testrendertarget.c ├── testresample.c ├── testrumble.c ├── testscale.c ├── testsem.c ├── testshader.c ├── testshape.c ├── testsprite2.c ├── testspriteminimal.c ├── teststreaming.c ├── testthread.c ├── testtimer.c ├── testver.c ├── testwm2.c ├── torturethread.c └── utf8.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/README.md -------------------------------------------------------------------------------- /bin/Media/tex/Mandelbrot.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Media/tex/Mandelbrot.dds -------------------------------------------------------------------------------- /bin/Media/tex/image.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Media/tex/image.dds -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_bindless_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_bindless_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_bindless_indirect_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_bindless_indirect_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_bindless_indirect_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_bindless_indirect_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_bindless_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_bindless_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_buffer_range_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_buffer_range_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_buffer_range_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_buffer_range_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_buffer_storage_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_buffer_storage_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_buffer_storage_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_buffer_storage_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_dynamic_buffer_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_dynamic_buffer_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_dynamic_buffer_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_dynamic_buffer_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_map_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_map_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_map_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_map_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_multi_draw_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_multi_draw_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_multi_draw_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_multi_draw_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_tex_coord_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_tex_coord_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_tex_coord_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_tex_coord_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_uniform_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_uniform_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/cubes_gl_uniform_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/cubes_gl_uniform_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/streaming_vb_gl_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/streaming_vb_gl_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/streaming_vb_gl_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/streaming_vb_gl_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_bindless_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_bindless_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_bindless_multidraw_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_bindless_multidraw_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_bindless_multidraw_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_bindless_multidraw_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_bindless_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_bindless_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_naive_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_naive_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_naive_uniform_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_naive_uniform_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_naive_uniform_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_naive_uniform_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_naive_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_naive_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_notex_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_notex_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_notex_uniform_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_notex_uniform_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_notex_uniform_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_notex_uniform_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_notex_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_notex_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_texture_array_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_texture_array_fs.glsl -------------------------------------------------------------------------------- /bin/Shaders/glsl/textures_gl_texture_array_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/glsl/textures_gl_texture_array_vs.glsl -------------------------------------------------------------------------------- /bin/Shaders/hlsl/cubes_d3d11_naive_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/hlsl/cubes_d3d11_naive_ps.hlsl -------------------------------------------------------------------------------- /bin/Shaders/hlsl/cubes_d3d11_naive_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/hlsl/cubes_d3d11_naive_vs.hlsl -------------------------------------------------------------------------------- /bin/Shaders/hlsl/streaming_vb_d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/hlsl/streaming_vb_d3d11_ps.hlsl -------------------------------------------------------------------------------- /bin/Shaders/hlsl/streaming_vb_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/hlsl/streaming_vb_d3d11_vs.hlsl -------------------------------------------------------------------------------- /bin/Shaders/hlsl/textures_d3d11_naive_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/hlsl/textures_d3d11_naive_ps.hlsl -------------------------------------------------------------------------------- /bin/Shaders/hlsl/textures_d3d11_naive_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/bin/Shaders/hlsl/textures_d3d11_naive_vs.hlsl -------------------------------------------------------------------------------- /linux_perf_numbers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/linux_perf_numbers.pdf -------------------------------------------------------------------------------- /perfnumbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/perfnumbers.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/GL/glcorearb.h -------------------------------------------------------------------------------- /src/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/GL/glext.h -------------------------------------------------------------------------------- /src/GL/glextensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/GL/glextensions.cpp -------------------------------------------------------------------------------- /src/GL/glextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/GL/glextensions.h -------------------------------------------------------------------------------- /src/GL/glextensions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/GL/glextensions.inl -------------------------------------------------------------------------------- /src/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/GL/wglext.h -------------------------------------------------------------------------------- /src/framework/apitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/apitest.cpp -------------------------------------------------------------------------------- /src/framework/appstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/appstate.cpp -------------------------------------------------------------------------------- /src/framework/appstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/appstate.h -------------------------------------------------------------------------------- /src/framework/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/buffer.cpp -------------------------------------------------------------------------------- /src/framework/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/buffer.h -------------------------------------------------------------------------------- /src/framework/bufferlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/bufferlock.cpp -------------------------------------------------------------------------------- /src/framework/bufferlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/bufferlock.h -------------------------------------------------------------------------------- /src/framework/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/console.cpp -------------------------------------------------------------------------------- /src/framework/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/console.h -------------------------------------------------------------------------------- /src/framework/dds_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/dds_helper.h -------------------------------------------------------------------------------- /src/framework/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/factory.cpp -------------------------------------------------------------------------------- /src/framework/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/factory.h -------------------------------------------------------------------------------- /src/framework/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/gfx.h -------------------------------------------------------------------------------- /src/framework/gfx_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/gfx_dx11.cpp -------------------------------------------------------------------------------- /src/framework/gfx_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/gfx_dx11.h -------------------------------------------------------------------------------- /src/framework/gfx_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/gfx_gl.cpp -------------------------------------------------------------------------------- /src/framework/gfx_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/gfx_gl.h -------------------------------------------------------------------------------- /src/framework/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/mathlib.h -------------------------------------------------------------------------------- /src/framework/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/options.cpp -------------------------------------------------------------------------------- /src/framework/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/options.h -------------------------------------------------------------------------------- /src/framework/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/os.cpp -------------------------------------------------------------------------------- /src/framework/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/os.h -------------------------------------------------------------------------------- /src/framework/sparse_bindless_texarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/sparse_bindless_texarray.cpp -------------------------------------------------------------------------------- /src/framework/sparse_bindless_texarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/sparse_bindless_texarray.h -------------------------------------------------------------------------------- /src/framework/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/timer.cpp -------------------------------------------------------------------------------- /src/framework/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/framework/timer.h -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/problems/dynamicstreaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/dynamicstreaming.cpp -------------------------------------------------------------------------------- /src/problems/dynamicstreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/dynamicstreaming.h -------------------------------------------------------------------------------- /src/problems/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/null.cpp -------------------------------------------------------------------------------- /src/problems/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/null.h -------------------------------------------------------------------------------- /src/problems/problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/problem.cpp -------------------------------------------------------------------------------- /src/problems/problem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/problem.h -------------------------------------------------------------------------------- /src/problems/texturedquads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/texturedquads.cpp -------------------------------------------------------------------------------- /src/problems/texturedquads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/texturedquads.h -------------------------------------------------------------------------------- /src/problems/untexturedobjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/untexturedobjects.cpp -------------------------------------------------------------------------------- /src/problems/untexturedobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/problems/untexturedobjects.h -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/d3d11/mapnooverwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/d3d11/mapnooverwrite.cpp -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/d3d11/mapnooverwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/d3d11/mapnooverwrite.h -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/gl/buffersubdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/gl/buffersubdata.cpp -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/gl/buffersubdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/gl/buffersubdata.h -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/gl/mappersistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/gl/mappersistent.cpp -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/gl/mappersistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/gl/mappersistent.h -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/gl/mapunsynchronized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/gl/mapunsynchronized.cpp -------------------------------------------------------------------------------- /src/solutions/dynamicstreaming/gl/mapunsynchronized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreaming/gl/mapunsynchronized.h -------------------------------------------------------------------------------- /src/solutions/dynamicstreamingsoln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreamingsoln.cpp -------------------------------------------------------------------------------- /src/solutions/dynamicstreamingsoln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/dynamicstreamingsoln.h -------------------------------------------------------------------------------- /src/solutions/nullsoln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/nullsoln.cpp -------------------------------------------------------------------------------- /src/solutions/nullsoln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/nullsoln.h -------------------------------------------------------------------------------- /src/solutions/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/solution.cpp -------------------------------------------------------------------------------- /src/solutions/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/solution.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/d3d11/naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/d3d11/naive.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/d3d11/naive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/d3d11/naive.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/bindless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/bindless.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/bindless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/bindless.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/bindlessmultidraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/bindlessmultidraw.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/bindlessmultidraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/bindlessmultidraw.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/naive.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/naive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/naive.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/naiveuniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/naiveuniform.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/naiveuniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/naiveuniform.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/notex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/notex.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/notex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/notex.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/notexuniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/notexuniform.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/notexuniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/notexuniform.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/texturearray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/texturearray.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/texturearray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/texturearray.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/texturearraymultidraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/texturearraymultidraw.h -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/texturearrayuniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/texturearrayuniform.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquads/gl/texturearrayuniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquads/gl/texturearrayuniform.h -------------------------------------------------------------------------------- /src/solutions/texturedquadssoln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquadssoln.cpp -------------------------------------------------------------------------------- /src/solutions/texturedquadssoln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/texturedquadssoln.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/d3d11/naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/d3d11/naive.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/d3d11/naive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/d3d11/naive.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bindless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bindless.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bindless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bindless.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bindlessindirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bindlessindirect.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bindlessindirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bindlessindirect.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bufferrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bufferrange.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bufferrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bufferrange.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bufferstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bufferstorage.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/bufferstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/bufferstorage.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/drawloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/drawloop.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/drawloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/drawloop.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/dynamicbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/dynamicbuffer.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/dynamicbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/dynamicbuffer.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/mappersistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/mappersistent.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/mappersistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/mappersistent.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/mapunsynchronized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/mapunsynchronized.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/multidraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/multidraw.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/multidraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/multidraw.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/multidrawbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/multidrawbuffer.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/multidrawbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/multidrawbuffer.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/texcoord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/texcoord.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/texcoord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/texcoord.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/uniform.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjects/gl/uniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjects/gl/uniform.h -------------------------------------------------------------------------------- /src/solutions/untexturedobjectssoln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjectssoln.cpp -------------------------------------------------------------------------------- /src/solutions/untexturedobjectssoln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/src/solutions/untexturedobjectssoln.h -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/LICENSE -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/arm/d3dcompiler_46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/arm/d3dcompiler_46.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x64/d3dcompiler_46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x64/d3dcompiler_46.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x64/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x64/d3dcompiler_47.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x64/d3dcsx_46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x64/d3dcsx_46.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x64/d3dcsx_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x64/d3dcsx_47.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x86/d3dcompiler_46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x86/d3dcompiler_46.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x86/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x86/d3dcompiler_47.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x86/d3dcsx_46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x86/d3dcsx_46.dll -------------------------------------------------------------------------------- /thirdparty/Microsoft/D3D/x86/d3dcsx_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/Microsoft/D3D/x86/d3dcsx_47.dll -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Android.mk -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/BUGS.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/COPYING.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/CREDITS.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/INSTALL.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Makefile.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Makefile.minimal -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Makefile.pandora -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Makefile.psp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Makefile.wiz -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-SDL.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-android.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-cmake.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-directfb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-directfb.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-gesture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-gesture.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-hg.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-ios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-ios.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-macosx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-macosx.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-pandora.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-pandora.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-platforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-platforms.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-porting.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-psp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-psp.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-raspberrypi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-raspberrypi.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-touch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-touch.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README-wince.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README-wince.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/README.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/SDL2.spec -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/SDL2.spec.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/TODO.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC.html -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/SDL_VS2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/SDL_VS2008.vcproj -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/SDL_VS2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/SDL_VS2010.vcxproj -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/SDL_VS2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/SDL_VS2012.vcxproj -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/SDL2.dll -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/SDL2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/SDL2.exp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/SDL2.lib -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/Win32/Debug/vc110.idb -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/SDL2.dll -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/SDL2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/SDL2.exp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/SDL2.lib -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/version.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Debug/version.res -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Release/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Release/SDL2.dll -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Release/SDL2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Release/SDL2.exp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Release/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL/x64/Release/SDL2.lib -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL_VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL_VS2010.sln -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL_VS2010EE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL_VS2010EE.sln -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL_VS2012.sln -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/SDL_VS2012EE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/SDL_VS2012EE.sln -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/VisualC/clean.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/WhatsNew.txt -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/Default.png -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/Info.plist -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/icon.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/ship.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/ship.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/space.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/space.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/stroke.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/data/stroke.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/common.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/common.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/fireworks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/fireworks.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/happy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/happy.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/keyboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/mixer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/rectangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/rectangles.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Demos/src/touch.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Test/Info.plist -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode/SDL/Info-Framework.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode/SDL/Info-Framework.plist -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode/SDL/pkg-support/SDL.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode/SDL/pkg-support/SDL.info -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/Xcode/XcodeDocSet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/Xcode/XcodeDocSet/Doxyfile -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/ac_check_define.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/ac_check_define.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/alsa.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/ax_gcc_archflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/ax_gcc_archflag.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/ax_gcc_x86_cpuid.m4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/ax_gcc_x86_cpuid.m4.htm -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/esd.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/libtool.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/android-project/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/android-project/ant.properties -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/android-project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/android-project/build.properties -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/android-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/android-project/build.xml -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/autogen.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/androidbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/androidbuild.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/config.guess -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/config.sub -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/g++-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/g++-fat.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/gcc-fat.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/install-sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/iosbuild.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/mkinstalldirs -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/showrev.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/strip_fPIC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/strip_fPIC.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/build-scripts/updaterev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/build-scripts/updaterev.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/cmake/macros.cmake -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/configure -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/configure.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/changelog -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/control -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/copyright -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/docs -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/libsdl2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/libsdl2-dev.install -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/libsdl2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/libsdl2.install -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/rules -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/sdl2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/debian/sdl2-config.1 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_assert.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_atomic.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_audio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_bits.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_blendmode.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_clipboard.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config.h.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_android.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_psp.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_windows.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_copying.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_endian.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_error.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_events.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_filesystem.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_gesture.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_haptic.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_hints.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_joystick.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_keyboard.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_keycode.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_loadso.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_log.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_main.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_messagebox.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_mouse.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_mutex.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_name.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_opengl.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_opengles.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_opengles2.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_pixels.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_platform.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_power.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_quit.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_rect.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_render.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_revision.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_rwops.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_scancode.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_shape.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_stdinc.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_surface.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_system.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_syswm.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_assert.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_common.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_compare.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_font.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_harness.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_images.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_log.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_md5.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_test_random.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_thread.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_timer.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_touch.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_types.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_version.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/SDL_video.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/begin_code.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/close_code.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/include/doxyfile -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/sdl2-config.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/sdl2.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/sdl2.pc.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL_assert.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL_assert_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL_error.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL_error_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL_hints.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/SDL_log.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audiomem.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/alsa/SDL_alsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/alsa/SDL_alsa_audio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/alsa/SDL_alsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/alsa/SDL_alsa_audio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/arts/SDL_artsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/arts/SDL_artsaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/arts/SDL_artsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/arts/SDL_artsaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/baudio/SDL_beaudio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/baudio/SDL_beaudio.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/baudio/SDL_beaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/baudio/SDL_beaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/bsd/SDL_bsdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/bsd/SDL_bsdaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/bsd/SDL_bsdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/bsd/SDL_bsdaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/directsound/directx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/directsound/directx.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/disk/SDL_diskaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/disk/SDL_diskaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/disk/SDL_diskaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/disk/SDL_diskaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/dsp/SDL_dspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/dsp/SDL_dspaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/dsp/SDL_dspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/dsp/SDL_dspaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/dummy/SDL_dummyaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/dummy/SDL_dummyaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/dummy/SDL_dummyaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/dummy/SDL_dummyaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/esd/SDL_esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/esd/SDL_esdaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/esd/SDL_esdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/esd/SDL_esdaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/nas/SDL_nasaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/nas/SDL_nasaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/nas/SDL_nasaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/nas/SDL_nasaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/paudio/SDL_paudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/paudio/SDL_paudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/paudio/SDL_paudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/paudio/SDL_paudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/psp/SDL_pspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/psp/SDL_pspaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/psp/SDL_pspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/psp/SDL_pspaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/qsa/SDL_qsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/qsa/SDL_qsa_audio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/qsa/SDL_qsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/qsa/SDL_qsa_audio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/sdlgenaudiocvt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/sdlgenaudiocvt.pl -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/sndio/SDL_sndioaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/sndio/SDL_sndioaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/sndio/SDL_sndioaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/sndio/SDL_sndioaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/sun/SDL_sunaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/sun/SDL_sunaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/sun/SDL_sunaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/sun/SDL_sunaudio.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/winmm/SDL_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/winmm/SDL_winmm.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/winmm/SDL_winmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/winmm/SDL_winmm.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/audio/xaudio2/SDL_xaudio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/audio/xaudio2/SDL_xaudio2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/core/android/SDL_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/core/android/SDL_android.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/core/android/SDL_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/core/android/SDL_android.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/core/linux/SDL_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/core/linux/SDL_udev.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/core/linux/SDL_udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/core/linux/SDL_udev.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/core/windows/SDL_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/core/windows/SDL_windows.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/core/windows/SDL_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/core/windows/SDL_windows.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_clipboardevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_clipboardevents.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_dropevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_dropevents.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_dropevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_dropevents_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_events.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_gesture_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_gesture_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_keyboard_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_keyboard_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_quit.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_touch.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_windowevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_windowevents.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/SDL_windowevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/SDL_windowevents_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/blank_cursor.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/default_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/default_cursor.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/scancodes_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/scancodes_darwin.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/scancodes_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/scancodes_linux.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/scancodes_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/scancodes_windows.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/events/scancodes_xfree86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/events/scancodes_xfree86.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/haptic/darwin/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/haptic/darwin/SDL_syshaptic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/haptic/dummy/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/haptic/dummy/SDL_syshaptic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/haptic/linux/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/haptic/linux/SDL_syshaptic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/input/evdev/SDL_evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/input/evdev/SDL_evdev.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/input/evdev/SDL_evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/input/evdev/SDL_evdev.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/joystick/SDL_gamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/joystick/SDL_gamecontroller.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/joystick/SDL_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/joystick/SDL_joystick.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/joystick/SDL_joystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/joystick/SDL_joystick_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/joystick/SDL_sysjoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/joystick/SDL_sysjoystick.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/joystick/sort_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/joystick/sort_controllers.py -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/e_atan2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/e_log.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/e_pow.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/k_cos.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/k_sin.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/math_libm.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/math_private.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_atan.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_copysign.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_cos.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_fabs.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_floor.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/libm/s_sin.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/loadso/beos/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/loadso/beos/SDL_sysloadso.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/loadso/dlopen/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/loadso/dlopen/SDL_sysloadso.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/loadso/dummy/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/loadso/dummy/SDL_sysloadso.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/main/beos/SDL_BApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/main/beos/SDL_BApp.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/main/beos/SDL_BeApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/main/beos/SDL_BeApp.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/main/beos/SDL_BeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/main/beos/SDL_BeApp.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/main/dummy/SDL_dummy_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/main/dummy/SDL_dummy_main.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/main/psp/SDL_psp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/main/psp/SDL_psp_main.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/main/windows/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/main/windows/version.rc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/SDL_power.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/android/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/android/SDL_syspower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/beos/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/beos/SDL_syspower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/linux/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/linux/SDL_syspower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/macosx/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/macosx/SDL_syspower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/psp/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/psp/SDL_syspower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/uikit/SDL_syspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/uikit/SDL_syspower.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/uikit/SDL_syspower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/uikit/SDL_syspower.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/power/windows/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/power/windows/SDL_syspower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/SDL_render.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/SDL_sysrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/SDL_sysrender.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/mmx.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/opengl/SDL_glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/opengl/SDL_glfuncs.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/opengl/SDL_render_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/opengl/SDL_render_gl.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/psp/SDL_render_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/psp/SDL_render_psp.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/software/SDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/software/SDL_draw.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/software/SDL_rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/software/SDL_rotate.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/render/software/SDL_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/render/software/SDL_rotate.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_assert.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_common.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_compare.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_crc32.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_font.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_fuzzer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_harness.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_imageBlit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_imageBlit.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_imageFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_imageFace.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/test/SDL_test_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/test/SDL_test_random.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/beos/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/beos/SDL_syssem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/beos/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/beos/SDL_systhread.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/beos/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/beos/SDL_systhread_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/beos/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/beos/SDL_systls.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/generic/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/generic/SDL_syscond.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/generic/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/generic/SDL_sysmutex.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/generic/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/generic/SDL_syssem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/generic/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/generic/SDL_systls.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/psp/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/psp/SDL_syscond.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/psp/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/psp/SDL_sysmutex.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/psp/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/psp/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/psp/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/psp/SDL_syssem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/psp/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/psp/SDL_systhread.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/psp/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/psp/SDL_systhread_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_syscond.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_sysmutex.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_syssem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/pthread/SDL_systls.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/windows/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/windows/SDL_sysmutex.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/windows/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/windows/SDL_syssem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/thread/windows/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/thread/windows/SDL_systls.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/beos/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/beos/SDL_systimer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/dummy/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/dummy/SDL_systimer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/psp/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/psp/SDL_systimer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/unix/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/unix/SDL_systimer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/timer/windows/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/timer/windows/SDL_systimer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_clipboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_egl.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_egl.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_rect.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_shape.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_shape_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_shape_internals.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_surface.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/SDL_video.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/android/SDL_androidgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/android/SDL_androidgl.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_BWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_BWin.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bevents.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bevents.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bevents.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bkeyboard.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bmodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bmodes.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bmodes.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bopengl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bopengl.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bopengl.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bvideo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bvideo.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bvideo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bwindow.cc -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/bwindow/SDL_bwindow.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaevents.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaevents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaevents.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamodes.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamodes.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamouse.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoamouse.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaopengl.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaopengl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoaopengl.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoashape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoashape.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoashape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoashape.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoavideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoavideo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoavideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoavideo.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoawindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoawindow.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoawindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/cocoa/SDL_cocoawindow.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/dummy/SDL_nullevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/dummy/SDL_nullevents.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/dummy/SDL_nullvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/dummy/SDL_nullvideo.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/dummy/SDL_nullvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/dummy/SDL_nullvideo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/pandora/SDL_pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/pandora/SDL_pandora.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/pandora/SDL_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/pandora/SDL_pandora.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspevents.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspevents_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspgl.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspgl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspgl_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspmouse.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspmouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspmouse_c.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspvideo.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/psp/SDL_pspvideo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitevents.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitevents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitevents.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitmodes.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitmodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitmodes.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitvideo.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitvideo.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitview.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitview.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitwindow.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/SDL_uikitwindow.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/uikit/keyinfotable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/uikit/keyinfotable.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/windows/SDL_msctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/windows/SDL_msctf.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/windows/SDL_vkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/windows/SDL_vkeys.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/windows/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/windows/wmmsg.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11clipboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11clipboard.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11dyn.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11dyn.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11events.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11events.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11keyboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11keyboard.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11messagebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11messagebox.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11messagebox.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11modes.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11modes.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11mouse.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11mouse.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengl.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengl.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengles.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11opengles.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11shape.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11shape.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11sym.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11touch.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11touch.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11video.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11video.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11window.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11window.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11xinput2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11xinput2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11xinput2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/SDL_x11xinput2.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/edid-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/edid-parse.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/edid.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/imKStoUCS.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/src/video/x11/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/src/video/x11/imKStoUCS.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/COPYING -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/Makefile.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/README -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/acinclude.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/aclocal.m4 -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/autogen.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/checkkeys.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/configure -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/configure.in -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/gcc-fat.sh -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/icon.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/loopwave.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/moose.dat -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/picture.xbm -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/relative_mode.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/relative_mode.markdown -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/sample.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/sample.wav -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p01_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p01_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p01_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p01_shape32alpha.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p01_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p01_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p02_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p02_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p02_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p02_shape32alpha.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p02_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p02_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p03_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p03_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p03_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p03_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p04_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p04_shape1.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p04_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p04_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p04_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p04_shape32alpha.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p04_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p04_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p05_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p05_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p06_shape1alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p06_shape1alpha.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p06_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p06_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p06_shape32alpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p06_shape32alpha.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p06_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p06_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p07_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p07_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p07_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p07_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p08_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p08_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p08_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p08_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p09_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p09_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p09_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p09_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p10_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p10_shape1.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p10_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p10_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p10_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p10_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p11_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p11_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p11_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p11_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p12_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p12_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p12_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p12_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p13_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p13_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p13_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p13_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p14_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p14_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p14_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p14_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p15_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p15_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p15_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p15_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p16_shape1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p16_shape1.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p16_shape24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p16_shape24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/p16_shape8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/p16_shape8.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/shapes/trollface_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/shapes/trollface_24.bmp -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testatomic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testaudioinfo.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_audio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_clipboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_events.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_keyboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_main.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_mouse.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_pixels.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_platform.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_rect.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_render.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_rwops.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_sdltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_sdltest.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_stdlib.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_suites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_suites.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_surface.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_syswm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_syswm.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_timer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testautomation_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testautomation_video.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testdraw2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testdrawchessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testdrawchessboard.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testdropfile.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testerror.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testfile.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testfilesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testfilesystem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testgamecontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testgamecontroller.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testgesture.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testgl2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testgles.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testhaptic.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testiconv.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testime.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testintersections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testintersections.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testjoystick.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testkeys.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testloadso.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testlock.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testmessage.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testmultiaudio.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testnative.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testnative.h -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testnativecocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testnativecocoa.m -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testnativew32.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testnativex11.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testoverlay2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testplatform.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testpower.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testrelative.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testrendercopyex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testrendercopyex.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testrendertarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testrendertarget.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testresample.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testrumble.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testscale.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testsem.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testshader.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testshape.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testsprite2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testspriteminimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testspriteminimal.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/teststreaming.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testthread.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testtimer.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testver.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/testwm2.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/torturethread.c -------------------------------------------------------------------------------- /thirdparty/SDL2-2.0.1/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvMcJohn/apitest/HEAD/thirdparty/SDL2-2.0.1/test/utf8.txt --------------------------------------------------------------------------------