Skip to content

Update raylib and raylib-cpp to 5.0 #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vendor/raylib
Submodule raylib updated 216 files
2 changes: 1 addition & 1 deletion vendor/raylib-cpp
Submodule raylib-cpp updated 61 files
+5 −6 .github/workflows/Tests.yml
+2 −0 .gitmodules
+1 −1 CMakeLists.txt
+1 −1 README.md
+3 −1 clib.json
+2 −1 examples/CMakeLists.txt
+1 −1 examples/models/models_first_person_maze.cpp
+4 −4 include/AudioDevice.hpp
+28 −26 include/AudioStream.hpp
+154 −0 include/AutomationEventList.hpp
+6 −6 include/BoundingBox.hpp
+48 −39 include/CMakeLists.txt
+6 −6 include/Camera2D.hpp
+9 −9 include/Camera3D.hpp
+94 −45 include/Color.hpp
+56 −0 include/FileData.hpp
+65 −0 include/FileText.hpp
+68 −21 include/Font.hpp
+99 −46 include/Functions.hpp
+12 −12 include/Gamepad.hpp
+119 −73 include/Image.hpp
+64 −0 include/Keyboard.hpp
+6 −6 include/Material.hpp
+8 −8 include/Matrix.hpp
+17 −216 include/Mesh.hpp
+267 −0 include/MeshUnmanaged.hpp
+20 −11 include/Model.hpp
+10 −5 include/ModelAnimation.hpp
+27 −28 include/Mouse.hpp
+19 −19 include/Music.hpp
+10 −10 include/Ray.hpp
+1 −1 include/RayCollision.hpp
+35 −23 include/Rectangle.hpp
+13 −11 include/RenderTexture.hpp
+19 −11 include/Shader.hpp
+16 −16 include/Sound.hpp
+9 −9 include/Text.hpp
+2 −2 include/Texture.hpp
+30 −30 include/TextureUnmanaged.hpp
+8 −9 include/Touch.hpp
+62 −63 include/Vector2.hpp
+72 −47 include/Vector3.hpp
+38 −27 include/Vector4.hpp
+5 −5 include/VrStereoConfig.hpp
+16 −16 include/Wave.hpp
+79 −48 include/Window.hpp
+15 −3 include/raylib-cpp-utils.hpp
+4 −0 include/raylib-cpp.hpp
+10 −2 include/raylib.hpp
+2 −2 package.json
+9 −2 projects/CMake/CMakeLists.txt
+6 −2 projects/CMake/README.md
+1 −1 projects/CMake/main.cpp
+1 −1 projects/Doxygen/doxygen-awesome-css
+3 −3 projects/VSCode/.vscode/launch.json
+44 −0 projects/VSCode/.vscode/settings.json
+39 −179 projects/VSCode/FirstPerson.cpp
+2 −2 projects/VSCode/Makefile
+38 −0 tests/raylib-assert.h
+21 −1 tests/raylib_cpp_test.cpp
+4 −0 tests/resources/lorem.txt
Loading