summaryrefslogtreecommitdiff
path: root/src/citra_qt
AgeCommit message (Collapse)Author
2015-05-01Qt: Shutdown game on emulator close event.bunnei
2015-05-01Qt: Disable "Start" unless we are paused (it otherwise has no meaning and ↵bunnei
causes a crash).
2015-05-01Qt: Fixed a bug in shutdown procedure, various cleanups.bunnei
2015-05-01Qt: Clear registers widget on shutdown.bunnei
2015-05-01Qt: Use signals for emu_thread start/stop and fix disasm widget.bunnei
2015-05-01Qt: Restructured to remove unnecessary shutdown event and various cleanups.bunnei
2015-05-01Qt: Fix loading a new game without stopping emulation.bunnei
2015-05-01Qt: Create emu thread on bootup, kill it on shutdown.bunnei
2015-05-01EmuThread: Remove unused filename attribute.bunnei
2015-05-01Qt: Move EmuThread ownership from render window to main window.bunnei
2015-04-17Merge pull request #691 from rohit-n/sign-comparebunnei
Silence some -Wsign-compare warnings.
2015-04-14citra-qt: Use std::abs() to get the right absolute function for s64.Emmanuel Gil Peyrot
2015-04-14Headers: Add some forgotten overrides, thanks clang!Emmanuel Gil Peyrot
2015-04-09Silence some -Wsign-compare warnings.Rohit Nirmal
2015-04-03Allow the user to set the background clear color during emulationarchshift
The background color can be seen at the sides of the bottom screen or when the window is wider than normal.
2015-03-31Merge pull request #678 from lioncash/disasmbunnei
callstack: Remove unnecessary disassembler instantiation
2015-03-30disassembler: Get rid of a const_castLioncash
2015-03-30callstack: Remove unnecessary disassembler instantiationLioncash
Decode is a static function. There's no need to allocate a disassembler instance.
2015-03-26unsetting a few more variables that arent needed outside of this functionJames Rowe
2015-03-26Updated the copy commands to run on post_build and use generator expressions ↵James Rowe
to simplify the code as well
2015-03-26Changes to bring the previous commits in line with the comments on thepull ↵James Rowe
request. Made the debug build a true debug build with no optimizxations and the RelWithDebInfo is what it says it is too. Changed the copying of the dlls to the build directories to happen at configuration time instead of build time
2015-03-26More changes to the CMakeFiles for better MSVC compatibility. Added in the ↵James Rowe
RelWithDebInfo target and setup copying the Qt 5 Dlls to the output directories.
2015-03-10HID: Complete refactor of pad/touch input to fix threading issues.bunnei
2015-03-10Qt: Implemented EmuWindow touchpad support.bunnei
2015-03-09Merge pull request #643 from Subv/dem_feelsbunnei
GPU: Implemented more depth buffer formats.
2015-03-09GPU: Added the stencil test structure to the Pica Regs struct.Subv
2015-03-09Frontend/Qt: Allow the framebuffer widget to inspect the depth bufferSubv
2015-03-09Merge pull request #634 from linkmauve/logging-performancesbunnei
Apply the logging filter before sending the message to the queue
2015-03-08Update nihstro submodule to the initial release version.archshift
Includes more opcodes to implement in the future.
2015-03-07Build app bundles on OS X. Fixes the issue where the menubar would not appear.archshift
2015-03-07Merge pull request #636 from bunnei/refactor-screen-winbunnei
Set framebuffer layout from EmuWindow.
2015-03-07Set framebuffer layout from EmuWindow.bunnei
2015-03-07Merge pull request #538 from yuriks/perf-statTony Wasserka
Add profiling infrastructure and widget
2015-03-06Logging: check for filter before sending to the queue, to skip all heavy ↵Emmanuel Gil Peyrot
formatting on the other thread.
2015-03-03GPU: Added RGB565/RGB8 framebuffer support and various cleanups.bunnei
- Centralizes color format encode/decode functions. - Fixes endianness issues. - Implements remaining framebuffer formats in the debugger.
2015-03-01Add profiling infrastructure and widgetYuri Kunde Schlesner
2015-02-26GPU: Implemented bits 3 and 1 from the display transfer flags.Subv
Bit 3 is used to specify a raw copy, where no processing is done to the data, seems to behave exactly as a DMA. Bit 1 is used to specify whether to convert from a tiled format to a linear format or viceversa.
2015-02-22Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.Emmanuel Gil Peyrot
2015-02-11citra-qt: Add a vertex shader debugger.Tony Wasserka
2015-02-11Pica/DebugUtils: Factor out BreakPointObserverDock into its own file.Tony Wasserka
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.harchshift
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
2015-02-10Merge pull request #526 from purpasmart96/citra_stubsbunnei
Services: Stub some functions
2015-02-07Services: Stub some functionspurpasmart96
2015-02-03citra-qt: Fix horrible scrolling responsiveness in disassembler by giving ↵Tony Wasserka
the uniformRowHeight hint.
2015-02-03citra-qt: Fix a crash when double-clicking a disassembler list item.Tony Wasserka
2015-02-01Merge pull request #514 from rohit-n/fix-warningsbunnei
Silence a few warnings.
2015-01-31arm: Adios armemuLioncash
2015-01-30Silence a few warnings.Rohit Nirmal
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