forked from dolphin-emu/dolphin
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
# Conflicts: # CMakeLists.txt # Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/EmulationActivity.java # Source/Android/app/src/main/res/layout/fragment_ingame_menu.xml # Source/Android/app/src/main/res/menu/menu_emulation.xml # Source/Android/app/src/main/res/values/strings.xml # Source/Android/jni/MainAndroid.cpp # Source/Core/VideoCommon/HiresTextures.cpp # Source/Core/VideoCommon/HiresTextures.h # Source/Core/VideoCommon/RenderBase.cpp
- Loading branch information
Showing
2,931 changed files
with
504,878 additions
and
191,821 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This file can be used for git blame using --ignore-revs-file | ||
# or by setting blame.ignoreRevsFile in the git config. | ||
|
||
# Remove unnecessary Src/ folders | ||
34692ab826abc8f8faa61bdb2280b742424528f1 | ||
|
||
# Reformat C++ code | ||
3570c7f03a2aa90aa634f96c0af1969af610f14d | ||
|
||
# Reformat Android code | ||
248ee12aed057acd0bdd310359c328e8d4fd5e5a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
path = Externals/Qt | ||
url = https://github.com/dolphin-emu/ext-win-qt.git | ||
branch = master | ||
shallow = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# When packaging Dolphin for an OS distribution, distro vendors usually prefer | ||
# to limit vendored ("Externals") dependencies as much as possible, in favor of | ||
# using system provided libraries. This modules provides an option to allow | ||
# only specific vendored dependencies and error-out at configuration time for | ||
# non-approved ones. | ||
# | ||
# Usage: | ||
# $ cmake -D APPROVED_VENDORED_DEPENDENCIES="a;b;c;..." | ||
# | ||
# Unless the option is explicitly used, vendored dependencies control is | ||
# disabled. | ||
# | ||
# If you want to disallow all vendored dependencies, put "none" in the approved | ||
# dependencies list. | ||
|
||
set(APPROVED_VENDORED_DEPENDENCIES "" CACHE STRING "\ | ||
Semicolon separated list of approved vendored dependencies. See docstring in \ | ||
CMake/CheckVendoringApproved.cmake.") | ||
|
||
function(check_vendoring_approved dep) | ||
if(APPROVED_VENDORED_DEPENDENCIES) | ||
if(NOT dep IN_LIST APPROVED_VENDORED_DEPENDENCIES) | ||
message(SEND_ERROR "\ | ||
Library ${dep} was not found systemwide and was not approved for vendoring. \ | ||
Vendored dependencies control is enabled. Add \"${dep}\" to the \ | ||
APPROVED_VENDORED_DEPENDENCIES list to bypass this error.") | ||
endif() | ||
endif() | ||
endfunction() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.