This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'master' of https://github.com/GTAmodding/re3 into erorcun
- Loading branch information
Showing
with
572 additions
and 53 deletions.
- +12 −0 .gitmodules
- +1 −1 README.md
- +1 −1 librw
- +1 −0 ogg
- +1 −0 opus
- +1 −0 opusfile
- +27 −0 premake5.lua
- +106 −0 src/audio/oal/stream.cpp
- +37 −0 src/audio/sampman.h
- +51 −7 src/audio/sampman_oal.cpp
- +9 −24 src/control/Pickups.cpp
- +2 −2 src/core/Camera.cpp
- +2 −5 src/core/Fire.cpp
- +14 −4 src/core/Game.cpp
- +1 −0 src/core/config.h
- +6 −5 src/fakerw/fake.cpp
- +3 −0 src/render/Shadows.cpp
- +39 −1 src/rw/RwHelper.cpp
- +9 −1 src/rw/RwHelper.h
- +2 −2 src/rw/RwMatFX.cpp
- +247 −0 src/rw/RwPS2AlphaTest.cpp
There are no files selected for viewing
| @@ -1,3 +1,15 @@ | |||
| [submodule "librw"] | [submodule "librw"] | ||
| path = librw | path = librw | ||
| url = https://github.com/aap/librw | url = https://github.com/aap/librw | ||
| [submodule "opus"] | |||
| path = opus | |||
| url = https://github.com/xiph/opus.git | |||
| branch = master | |||
| [submodule "opusfile"] | |||
| path = opusfile | |||
| url = https://github.com/xiph/opusfile.git | |||
| branch = master | |||
| [submodule "ogg"] | |||
| path = ogg | |||
| url = https://github.com/xiph/ogg.git | |||
| branch = master | |||
Submodule librw
updated
14 files
| +2 −1 | premake5.lua | |
| +2 −1 | src/charset.cpp | |
| +13 −10 | src/d3d/d3d.cpp | |
| +4 −3 | src/d3d/rwd3d.h | |
| +1 −1 | src/d3d/rwxbox.h | |
| +1 −0 | src/gl/rwgl3.h | |
| +20 −3 | src/image.cpp | |
| +19 −12 | src/png.cpp | |
| +79 −38 | src/ps2/ps2raster.cpp | |
| +27 −0 | src/ps2/rwps2.h | |
| +11 −9 | src/rwengine.h | |
| +5 −0 | src/rwobjects.h | |
| +34 −3 | src/texture.cpp | |
| +6 −6 | tools/playground/ras_test.cpp |
Oops, something went wrong.