Skip to content

Commit

Permalink
Update libSDL2pp
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Apr 28, 2022
1 parent 6c0797f commit 2299fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extlibs/libSDL2pp
Submodule libSDL2pp updated 97 files
+47 −55 .appveyor.yml
+81 −0 .github/workflows/ci.yml
+17 −9 .gitignore
+0 −43 .travis.yml
+105 −52 CHANGES.md
+157 −190 CMakeLists.txt
+10 −6 Doxyfile.in
+0 −28 FindSDL2PP.cmake.in
+27 −39 README.md
+4 −4 SDL2pp/AudioDevice.cc
+8 −6 SDL2pp/AudioDevice.hh
+7 −2 SDL2pp/AudioSpec.hh
+5 −2 SDL2pp/Chunk.cc
+7 −5 SDL2pp/Chunk.hh
+27 −0 SDL2pp/Color.cc
+278 −0 SDL2pp/Color.hh
+1 −10 SDL2pp/Config.hh.in
+13 −0 SDL2pp/ContainerRWops.hh
+12 −9 SDL2pp/Exception.cc
+9 −13 SDL2pp/Exception.hh
+6 −5 SDL2pp/Font.cc
+4 −3 SDL2pp/Font.hh
+12 −4 SDL2pp/Mixer.cc
+23 −6 SDL2pp/Mixer.hh
+17 −3 SDL2pp/Music.cc
+36 −5 SDL2pp/Music.hh
+4 −23 SDL2pp/Optional.hh
+6 −4 SDL2pp/Point.hh
+18 −6 SDL2pp/RWops.cc
+19 −5 SDL2pp/RWops.hh
+1 −1 SDL2pp/Rect.cc
+5 −4 SDL2pp/Rect.hh
+20 −9 SDL2pp/Renderer.cc
+43 −29 SDL2pp/Renderer.hh
+1 −1 SDL2pp/SDL.cc
+4 −2 SDL2pp/SDL.hh
+5 −3 SDL2pp/SDL2pp.hh
+1 −1 SDL2pp/SDLImage.cc
+4 −2 SDL2pp/SDLImage.hh
+1 −1 SDL2pp/SDLMixer.cc
+4 −2 SDL2pp/SDLMixer.hh
+1 −1 SDL2pp/SDLTTF.cc
+3 −1 SDL2pp/SDLTTF.hh
+26 −1 SDL2pp/StreamRWops.hh
+17 −4 SDL2pp/Surface.cc
+41 −7 SDL2pp/Surface.hh
+1 −1 SDL2pp/SurfaceLock.cc
+33 −2 SDL2pp/Texture.cc
+57 −6 SDL2pp/Texture.hh
+1 −1 SDL2pp/TextureLock.cc
+4 −3 SDL2pp/Wav.hh
+26 −2 SDL2pp/Window.cc
+56 −6 SDL2pp/Window.hh
+0 −518 SDL2pp/external/libcpp_optional.hh
+0 −15 cmake/AppendCXXFlagIfSupported.cmake
+0 −16 cmake/CheckCompile.cmake
+0 −18 cmake/FindSDL2.cmake
+11 −14 cmake/FindSDL2_image.cmake
+11 −14 cmake/FindSDL2_mixer.cmake
+11 −14 cmake/FindSDL2_ttf.cmake
+0 −23 cmake/Join.cmake
+15 −0 cmake/SDL2ppConfig.cmake.in
+36 −43 examples/CMakeLists.txt
+5 −3 examples/audio_sine.cc
+1 −1 examples/audio_wav.cc
+2 −2 examples/fill.cc
+2 −2 examples/image.cc
+1 −1 examples/lines.cc
+2 −3 examples/mixer.cc
+2 −3 examples/mixer_effects.cc
+2 −3 examples/mixer_music.cc
+3 −1 examples/mixer_music_sine.cc
+1 −1 examples/rendertarget.cc
+1 −1 examples/sprites.cc
+1 −1 examples/ttf.cc
+7 −7 exttests/cmake/CMakeLists.txt
+1 −1 exttests/pkg-config/Makefile
+46 −31 tests/CMakeLists.txt
+0 −5 tests/header_containerrwops.cc
+0 −5 tests/header_streamrwops.cc
+1 −1 tests/header_test.cc.in
+124 −0 tests/live_audiodevice.cc
+63 −4 tests/live_mixer.cc
+215 −12 tests/live_rendering.cc
+240 −0 tests/live_window.cc
+16 −0 tests/movetest.hh
+88 −0 tests/test_color.cc
+29 −0 tests/test_color_constexpr.cc
+2 −2 tests/test_error.cc
+155 −0 tests/test_font.cc
+1 −2 tests/test_optional.cc
+5 −3 tests/test_pointrect.cc
+18 −20 tests/test_pointrect_constexpr.cc
+24 −3 tests/test_rwops.cc
+20 −0 tests/test_surface.cc
+35 −0 tests/test_wav.cc
+47 −2 tests/testing.h

0 comments on commit 2299fba

Please sign in to comment.