summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger
AgeCommit message (Collapse)Author
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot
2015-05-22Pica: Create 'State' structure and move state memory there.bunnei
2015-05-15Memmap: Re-organize memory function in two filesYuri Kunde Schlesner
memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
2015-05-09Memory: Add GetPhysicalPointer helper functionYuri Kunde Schlesner
2015-05-09Memory: Support more regions in the VAddr-PAddr translation functionsYuri Kunde Schlesner
Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
2015-05-07Common: Remove common.hYuri Kunde Schlesner
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: 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-14Headers: Add some forgotten overrides, thanks clang!Emmanuel Gil Peyrot
2015-04-09Silence some -Wsign-compare warnings.Rohit Nirmal
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-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-08Update nihstro submodule to the initial release version.archshift
Includes more opcodes to implement in the future.
2015-03-07Merge pull request #538 from yuriks/perf-statTony Wasserka
Add profiling infrastructure and widget
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-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-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-01-30Silence a few warnings.Rohit Nirmal
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-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-04citra-qt: Added license headers to files.chrisvj
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-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-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)