summaryrefslogtreecommitdiff
path: root/src/citra_qt
AgeCommit message (Collapse)Author
2015-01-21Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxarchshift
2015-01-20Merge pull request #429 from Kingcom/titlebarTony Wasserka
Add option to hide dock widget title bars
2015-01-20citra-qt: Add option to hide dock widget title barsKingcom
2015-01-13Merge pull request #473 from archshift/pp3portsbunnei
Pica/Rasterizer: Add ETC1 texture decompression support.
2015-01-13Pica/Rasterizer: Add ETC1 texture decompression support.Tony Wasserka
2015-01-11Qt Callstack: Clear the callstack every time it's updatedarchshift
This fixes the issue that old members of the callstack would stick around, even when the callstack shortened.
2015-01-11Merge pull request #437 from Kingcom/DebugModeTony Wasserka
Replace OnCpuStepped signal
2015-01-11citra-qt: Replace OnCpuStepped signal by new signals DebugModeEntered and ↵Kingcom
DebugModeLeft
2015-01-10citra-qt: Add explicit casts to prevent some warnings.Subv
2015-01-10citra-qt: Fixed some Qt errors on initializationSubv
2015-01-10Merge pull request #342 from uppfinnarn/masterbunnei
Build improvements
2015-01-09Use -pthread where and only where neededJohannes Ekberg
Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there.
2015-01-09Generic PLATFORM_LIBRARIES varJohannes Ekberg
This both reduces redundancy in add_executable definitions, and makes it easier to link additional libraries. In particular, extra libraries are needed on OSX - see next commit.
2015-01-09Move ThreadContext to core/core.h and deal with the falloutYuri Kunde Schlesner
2015-01-07citra-qt: Add check for valid address to call stackKingcom
2015-01-06citra-qt: Renamed all .hxx headers to .hchrisvj
2015-01-05Merge pull request #272 from rohit-n/sign-comparebunnei
Silence some -Wsign-compare warnings.
2015-01-05Add support load 3DS roomDante38490
2015-01-04citra-qt: Added license headers to files.chrisvj
2015-01-04Frontends: Shutdown core when emulation is stoppedYuri Kunde Schlesner
2015-01-02Merge pull request #377 from Yllodra/misc-changesTony Wasserka
Qt: Letter cases and single window mode
2015-01-01Merge pull request #358 from neobrain/pica_progress2bunnei
pica_progress followups
2015-01-01Silence some -Wsign-compare warnings.Rohit Nirmal
2015-01-01Make letter cases consistent in menus and widgetsDaniel Lundqvist
In various menu options letter cases were not consistent. This was also the case within various debugging widgets. This attempts to make letter cases consistent, but it is of course a matter of opinion which way is the correct one.
2015-01-01Change popout mode to "Single Window Mode"Daniel Lundqvist
2015-01-01Set object name for the graphics debuggerDaniel Lundqvist
Setting an object name for GPUCommandStreamWidget allows for saving the graphics debugger's state (if it's show, position, etc). This state is then restored when restarting the application.
2014-12-31SOC_U: Preliminary implementation of sockets.Subv
Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
2014-12-31Pica: Cleanup color conversion.Tony Wasserka
2014-12-31citra-qt: Fix displaying RGBA5551 framebuffers.Tony Wasserka
(not that it matters at the moment, because this code is not used yet)
2014-12-31citra-qt: Always show pica framebuffers as RGBA8.Tony Wasserka
We actually don't really know yet how the format is encoded. Hence just use what works.
2014-12-31Add citra icon to Windows executable and title barChin
2014-12-29Merge pull request #344 from Yllodra/Qt-Odditiesbunnei
Allow focus on the Qt render widget
2014-12-28Merge pull request #347 from bunnei/frameskipbunnei
Frameskip
2014-12-28GPU: Implement frameskip and remove forced framebuffer swap hack.bunnei
2014-12-28Qt: we don't need to check if model is valid.xdec
2014-12-28Fix crash when the disassembler pause button is pressed while no game is ↵xdec
running.
2014-12-26GPU: Change internal framerate to 30fps.bunnei
2014-12-26Remove duplicate workDaniel Lundqvist
2014-12-26Allow focus only when in popout modeDaniel Lundqvist
Only allow manually setting focus to the rendering widget when in Single Window mode. Apply this behavior to when changing the mode while an app is running.
2014-12-26Allow focus on the Qt render widgetDaniel Lundqvist
By default widgets are set to the focus policy Qt::NoFocus which disallows manually focusing it. Changing the policy to allow clicking the widget to set focus to it allows for keyboard input when not rendering to a popout window. This commit also sets focus to the widget when showing it. Fixes issue #158.
2014-12-22Merge pull request #275 from yuriks/cmake-cleanbunnei
Clean up CMake library specification
2014-12-21Merge pull request #291 from purpasmart96/licensebunnei
License change
2014-12-20License changepurpasmart96
2014-12-20Pica/DebugUtils: Add an event triggered after loading a vertex.Tony Wasserka
2014-12-20Add support for a ridiculous number of texture formats.Tony Wasserka
2014-12-20Pica: Unify ugly address translation hacks.Tony Wasserka
2014-12-20Pica: Merge texture lookup logic for DebugUtils and Rasterizer.Tony Wasserka
This effectively adds support for a lot texture formats in the rasterizer.
2014-12-20citra-qt: Fix invalid memory read upon program startup.Tony Wasserka
This was caused by the framebuffer display widget not checking whether we are actually in a valid emulation state or not.
2014-12-20Pica: Initial support for multitexturing.Tony Wasserka
2014-12-20citra-qt: static-constify a map.Tony Wasserka