Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge branch 'master' into android-core-control
- Loading branch information
Showing
2,008 changed files
with
27,340 additions
and
23,675 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,32 @@ | ||
| include(FindPkgConfig OPTIONAL) | ||
|
|
||
| # This is a hack to deal with Ubuntu's mess. | ||
| # Ubuntu's version of glew is 1.8, but they have patched in most of glew 1.9. | ||
| # So Ubuntu's version works for dolphin. | ||
| macro(test_glew) | ||
| set(CMAKE_REQUIRED_INCLUDES ${GLEW_INCLUDE_DIRS}) | ||
| set(CMAKE_REQUIRED_LIBRARIES GLEW) | ||
| check_cxx_source_runs(" | ||
| #include <GL/glew.h> | ||
| int main() | ||
| { | ||
| #ifdef GLEW_ARB_shader_image_load_store | ||
| return 0; | ||
| #else | ||
| return 1; | ||
| #endif | ||
| }" | ||
| GLEW_HAS_1_9_METHODS) | ||
| endmacro() | ||
|
|
||
| if(PKG_CONFIG_FOUND AND NOT ${var}_FOUND) | ||
| pkg_search_module(GLEW glew>=1.8) | ||
| endif() | ||
|
|
||
| if(GLEW_FOUND) | ||
| test_glew() | ||
| if (GLEW_HAS_1_9_METHODS) | ||
| include_directories(${GLEW_INCLUDE_DIRS}) | ||
| message("GLEW found") | ||
| endif() | ||
| endif() |
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,59 @@ | ||
| # Locate polarssl library | ||
| # This module defines | ||
| # POLARSSL_FOUND | ||
| # POLARSSL_LIBRARY | ||
| # POLARSSL_INCLUDE_DIR | ||
| # POLARSSL_WORKS, this is true if polarssl is found and contains the methods | ||
| # needed by dolphin-emu | ||
|
|
||
| if(POLARSSL_INCLUDE_DIR AND POLARSSL_LIBRARY) | ||
| # Already in cache, be silent | ||
| set(POLARSSL_FIND_QUIETLY TRUE) | ||
| endif() | ||
|
|
||
| find_path(POLARSSL_INCLUDE_DIR polarssl/ssl.h) | ||
| find_library(POLARSSL_LIBRARY polarssl) | ||
|
|
||
| if (POLARSSL_INCLUDE_DIR AND POLARSSL_LIBRARY) | ||
| set (POLARSSL_FOUND TRUE) | ||
| endif () | ||
|
|
||
| if (POLARSSL_FOUND) | ||
| if (NOT POLARSSL_FIND_QUIETLY) | ||
| message (STATUS "Found the polarssl libraries at ${POLARSSL_LIBRARY}") | ||
| message (STATUS "Found the polarssl headers at ${POLARSSL_INCLUDE_DIR}") | ||
| endif (NOT POLARSSL_FIND_QUIETLY) | ||
|
|
||
| message(STATUS "Checking to see if system version contains necessary methods") | ||
|
|
||
| set(CMAKE_REQUIRED_INCLUDES ${POLARSSL_INCLUDE_DIR}) | ||
| set(CMAKE_REQUIRED_LIBRARIES ${POLARSSL_LIBRARY}) | ||
| check_cxx_source_compiles(" | ||
| #include <polarssl/net.h> | ||
| #include <polarssl/ssl.h> | ||
| #include <polarssl/havege.h> | ||
| int main() | ||
| { | ||
| ssl_context ctx; | ||
| ssl_session session; | ||
| havege_state hs; | ||
| ssl_init(&ctx); | ||
| havege_init(&hs); | ||
| ssl_set_rng(&ctx, havege_random, &hs); | ||
| ssl_set_session(&ctx, &session); | ||
| ssl_close_notify(&ctx); | ||
| ssl_session_free(&session); | ||
| ssl_free(&ctx); | ||
| return 0; | ||
| }" | ||
| POLARSSL_WORKS) | ||
|
|
||
| else () | ||
| message (STATUS "Could not find polarssl") | ||
| endif () | ||
|
|
||
| MARK_AS_ADVANCED(POLARSSL_INCLUDE_DIR POLARSSL_LIBRARY) | ||
|
|
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
20 changes: 10 additions & 10 deletions
20
Data/User/GameConfig/G4ZE69.ini → Data/Sys/GameSettings/G4ZE69.ini
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 |
|---|---|---|
| @@ -1,20 +1,20 @@ | ||
| # G4ZE69 - The Sims 2 GameCube | ||
|
|
||
| [Core] | ||
| # Values set here will override the main dolphin settings. | ||
| TLBHack=1 | ||
|
|
||
| TLBHack = 1 | ||
| [EmuState] | ||
| # The Emulation State. 1 is worst, 5 is best, 0 is not set. | ||
| EmulationStateId = 4 | ||
| Issues="Go to menu and select options, then hangs" | ||
|
|
||
| EmulationIssues = | ||
| [OnLoad] | ||
| # Add memory patches to be loaded once on boot here. | ||
|
|
||
| [OnFrame] | ||
| # Add memory patches to be applied every frame here. | ||
|
|
||
| [ActionReplay] | ||
| # Add action replay cheats here. | ||
|
|
||
| [Video] | ||
| ProjectionHack = 0 | ||
| PH_SZNear = 0 | ||
| PH_SZFar = 0 | ||
| PH_ExtraParam = 0 | ||
| PH_ZNear = | ||
| PH_ZFar = | ||
| [Gecko] |
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,20 @@ | ||
| # G4ZP69 - The Sims 2 GameCube | ||
| [Core] | ||
| # Values set here will override the main dolphin settings. | ||
| TLBHack = 1 | ||
| [EmuState] | ||
| # The Emulation State. 1 is worst, 5 is best, 0 is not set. | ||
| EmulationStateId = 4 | ||
| EmulationIssues = | ||
| [OnLoad] | ||
| # Add memory patches to be loaded once on boot here. | ||
| [OnFrame] | ||
| [ActionReplay] | ||
| [Video] | ||
| ProjectionHack = 0 | ||
| PH_SZNear = 0 | ||
| PH_SZFar = 0 | ||
| PH_ExtraParam = 0 | ||
| PH_ZNear = | ||
| PH_ZFar = | ||
| [Gecko] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,4 +16,3 @@ PH_ZFar = | |
| [Video_Settings] | ||
| UseXFB = True | ||
| UseRealXFB = True | ||
| [Gecko] | ||
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 |
|---|---|---|
|
|
@@ -16,4 +16,3 @@ PH_ZFar = | |
| [Video_Settings] | ||
| UseXFB = True | ||
| UseRealXFB = True | ||
| [Gecko] | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # GCIE69 - The Sims | ||
| [Core] | ||
| [EmuState] | ||
| EmulationStateId = 4 | ||
| EmulationIssues = | ||
| [OnFrame] | ||
| [ActionReplay] | ||
| [Video] | ||
| ProjectionHack = 0 | ||
| PH_SZNear = 0 | ||
| PH_SZFar = 0 | ||
| PH_ExtraParam = 0 | ||
| PH_ZNear = | ||
| PH_ZFar = | ||
| [Gecko] | ||
| [Video_Settings] | ||
| SafeTextureCacheColorSamples = 0 |
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,17 @@ | ||
| # GCIP69 - The Sims | ||
| [Core] | ||
| [EmuState] | ||
| EmulationStateId = 4 | ||
| EmulationIssues = | ||
| [OnFrame] | ||
| [ActionReplay] | ||
| [Video] | ||
| ProjectionHack = 0 | ||
| PH_SZNear = 0 | ||
| PH_SZFar = 0 | ||
| PH_ExtraParam = 0 | ||
| PH_ZNear = | ||
| PH_ZFar = | ||
| [Gecko] | ||
| [Video_Settings] | ||
| SafeTextureCacheColorSamples = 0 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.