24ea2dc2da
Merge pull request #3842 from rukai/dolphinQtVSkeepBinaryClean
...
[Qt] VS build no longer adds all of Data to Binary
2016-05-19 20:49:35 +12:00
2d41f129cd
Merge pull request #3849 from Tsunamical/codecleanup
...
[Android] Reduce code redundancy and catch a leak
2016-05-19 20:46:48 +12:00
4a0a92e95e
[Android] Bump gradle plugin to 2.1.0
...
And fix deprecation warning in script
2016-05-18 22:31:54 -04:00
a5b72abf2c
[Android] Reduce code redundancy
2016-05-18 22:13:33 -04:00
937caea1c9
[Android] Drop commit() for apply()
...
Apply is asynchronous, and we aren't expecting a return value so there
is no reason not to use apply.
2016-05-18 22:10:52 -04:00
a0b54f558e
[Android] Don't hardcode SD card path
2016-05-18 22:10:42 -04:00
6a870c2417
[Android] Fix possible leak of fileCursor
2016-05-18 22:10:29 -04:00
c04cff57da
GLExtensions: Fix OpenGL ES 3.2 handling.
2016-05-18 23:22:46 +02:00
22648729c7
Merge pull request #3832 from degasus/android
...
DriverDetails: Update Qualcomm new driver version.
2016-05-18 21:26:45 +02:00
54b4efff6b
GCAdapter: improve thread safety
...
make sure Reset() can’t be run concurrently with AddGCAdapter() or
ResetRumble() (which is called on other threads) which can cause
crashes (issue #9462 )
2016-05-18 20:44:01 +02:00
682af0a86a
Merge pull request #3846 from degasus/videosw
...
VideoSW: Fix XFB config.
2016-05-18 20:14:55 +02:00
da3b03c61d
Merge pull request #3829 from phire/timing_madness
...
Increase Audio DMA Interrupt delay to 200 cycles (Fix assorted Namco games)
2016-05-18 20:14:02 +02:00
3a452f3cc5
VideoSW: Fix XFB config.
2016-05-18 18:37:44 +02:00
fa3526962d
VideoSW: Drop Update in XFB copy.
2016-05-18 18:37:44 +02:00
ae5d6003cd
Merge pull request #3758 from phire/minor_core_timing_fix
...
CoreTiming: Trim max slicelength to the given value.
2016-05-18 17:56:02 +02:00
e2d65778fc
Merge pull request #3816 from magumagu/neogamma-hack
...
Add hack to IPCHLE to make NeoGamma work.
2016-05-18 17:49:58 +02:00
5a36b7db24
Merge pull request #3811 from magumagu/eslaunch-timing
...
Fix timing regression affecting ES_LAUNCH.
2016-05-18 17:15:30 +02:00
60e7c78007
Merge pull request #3840 from degasus/arm
...
JitArm64: Faster block linking.
2016-05-18 16:49:01 +02:00
dc3bbeb92f
Fix reading CISO files on Android
2016-05-17 14:20:59 +02:00
f9ef9067c1
[Qt] VS build no longer adds all of Data to Binary
2016-05-14 16:50:25 +10:00
e5bafeb40a
Merge pull request #3821 from mathieui/gcadapter-no-device
...
Fix a hang with the GC Adapter
2016-05-13 21:36:51 -04:00
637851fce0
JitArm64: optimize bclrx
...
the unconditional path is the most common, so no need to switch to far code here.
2016-05-14 00:05:55 +02:00
b6f16352e4
JitArm64: Check downcount on block linking.
...
This skips one B() call.
2016-05-14 00:04:58 +02:00
10e716c623
JitCommon: Pass jit block instead of host pointer on linking.
...
So the JIT may do more fancy stuff.
2016-05-14 00:04:58 +02:00
cf3c65fbd0
JitArm64: Use B() instead of BR() to jumo to ASM.
...
Avoid indirect jumps as good as possible. This is a noticeable speedup.
2016-05-14 00:04:58 +02:00
b2be9bd7f7
JitArm64: Inline JitAsm in JitArm64.
...
So they share the same emitter, and so they are in the same 128MB range.
This allows us to use B() to jump to the dispatcher.
However, so we have to regenerate them on every cache clear.
2016-05-14 00:04:58 +02:00
c1944f623b
Core/Movie: Add ability to run code in Host context
...
EndPlayInput runs on the CPU thread so it can't directly call
UpdateWantDeterminism. PlayController also tries to ChangeDisc
from the CPU Thread which is also invalid. It now just pauses
execution and posts a request to the Host to fix it instead.
The Core itself also did dodgy things like PauseAndLock-ing
from the CPU Thread and SetState from EmuThread which have been
removed.
2016-05-13 09:23:44 +10:00
e8dfc8e654
Movie: Threadsafety Audit
...
Fix TASInputDlg which was trying to access the GUI without the GUI
lock from the CPU Thread.
2016-05-13 09:23:44 +10:00
c1922783f8
Core: Threadsafety Synchronization Fixes (Frame Advance / FifoPlayer)
...
Fix Frame Advance and FifoPlayer pause/unpause/stop.
CPU::EnableStepping is not atomic but is called from multiple threads
which races and leaves the system in a random state; also instruction
stepping was unstable, m_StepEvent had an almost random value because
of the dual purpose it served which could cause races where CPU::Run
would SingleStep when it was supposed to be sleeping.
FifoPlayer never FinishStateMove()d which was causing it to deadlock.
Rather than partially reimplementing CPU::Run, just use CPUCoreBase
and then call CPU::Run(). More DRY and less likely to have weird bugs
specific to the player (i.e the previous freezing on pause/stop).
Refactor PowerPC::state into CPU since it manages the state of the
CPU Thread which is controlled by CPU, not PowerPC. This simplifies
the architecture somewhat and eliminates races that can be caused by
calling PowerPC state functions directly instead of using CPU's
(because they bypassed the EnableStepping lock).
2016-05-13 09:23:44 +10:00
8f0cbefbe5
Disable part of the adapter features for netplay
...
In order to avoid desyncs
2016-05-12 23:31:51 +02:00
d9a8318879
Brings visual studio build files up to date with recent Qt changes
2016-05-13 01:18:57 +10:00
ec40b38484
Merge pull request #3571 from rukai/dolphinQtVisualStudio
...
DolphinQt2 Builds on Visual Studio
2016-05-12 22:27:18 +12:00
356f709537
Merge pull request #3810 from mathieui/fix-adapter-recording-savestate
...
Fix loading save states with input recording with the adapter
2016-05-12 20:53:04 +12:00
2a0ba5aaa6
Fix loading save states with input recording with the adapter
...
Intended fix for issue #9508
2016-05-12 10:45:03 +02:00
8d23ebaa6b
Revert "Fix netplay desync when using wii-u adapter."
...
This reverts commit 429ae8fb01
.
Conflicts:
Source/Core/Core/HW/SI_DeviceGCAdapter.cpp
Source/Core/Core/HW/SI_DeviceGCAdapter.h
2016-05-12 02:01:35 +02:00
bca0e06a95
OGL: Use coherent mapping on Qualcomm devices.
2016-05-11 23:55:28 +02:00
7517d126c8
DriverDetails: Drop BUG_BROKENALPHATEST.
...
This flag is not in use at all.
2016-05-11 21:22:09 +02:00
6219c39cf5
OGL: Drop QC ES3.1 workaround.
...
This was never tested well:
HdkR> The tester was most likely trying to load a stale shader cache or something
2016-05-11 20:45:07 +02:00
48c0c2ace6
Merge pull request #3830 from Lionel07/qt-settings-window
...
[Qt] Settings Window for Qt
2016-05-11 16:43:43 +12:00
321b775f02
[Qt] Settings Window for Qt
...
AND Fix leftovers from full code, fixed styling and lint
2016-05-10 21:24:53 -07:00
670a1c2694
Merge pull request #3532 from rukai/enterOpenGame
...
Qt - Enter key opens selected game in the game list.
2016-05-11 08:45:29 +12:00
3f012df6d5
Merge pull request #3615 from rukai/qtCrash
...
DolphinQt2: Fix crash related to loading gameini
2016-05-11 08:40:00 +12:00
e01bdeddf2
Piping the wxMsgAlert through netplay window during netplay instead of running a blocking messagebox
2016-05-10 05:03:06 -05:00
bb6a04dc8e
Merge pull request #3713 from stenzek/d3d12-more-fixes
...
D3D12: Bug fixes, implement bbox, realxfb, perfquery
2016-05-10 21:34:27 +12:00
2c95cf0f5a
Increase Audio DMA Interrupt delay to 200 cycles.
...
We really need hardware tests for this one. But this will do as a
quick fix for issue 9509 for 5.0
2016-05-09 14:16:32 +12:00
c299a6a8cc
Merge pull request #3801 from Helios747/the_30_minute_blocker_fix
...
[UI] Remove browse toolbar button and tweak empty gamelist message
2016-05-08 17:24:40 -04:00
ccf9470241
D3D12: Specify read/write ranges when calling Map/Unmap
2016-05-08 23:18:59 +10:00
fde7dee652
D3D12: Fix invalid CopyTextureRegion call in CopyRectangleFromTexture
...
This was occuring when the source texture was larger than the destination
texture, but the source rect was <= dest rect, so the copy is valid.
2016-05-08 23:18:58 +10:00
9bff187547
D3D12: Cleanup startup/shutdown process
...
Sorts out references that cause some modules to be kept around after
backend shutdown.
Should also solve the issue with errors being thrown due to the config
being loaded after device creation, leading to the incorrect device being
used in a multi-adapter system.
2016-05-08 23:18:58 +10:00
4269abdc3e
D3D12: Implement perf query support
2016-05-08 23:18:57 +10:00