summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger
AgeCommit message (Collapse)Author
2015-07-13CiTrace: Clean up initialization method.Tony Wasserka
2015-07-13CiTrace: Record LCD registers. Cleanup recording code.Tony Wasserka
2015-07-13CiTrace: Record default vertex attributes.Tony Wasserka
2015-07-13citra-qt: Properly disable the CiTrace widget upon starting/stopping emulation.Tony Wasserka
2015-07-13Add CiTrace recording support.Tony Wasserka
This is exposed in the GUI as a new "CiTrace Recording" widget. Playback is implemented by a standalone 3DS homebrew application (which only runs reliably within Citra currently; on an actual 3DS it will often crash still).
2015-06-28CitraQt: Cleanup includes.Emmanuel Gil Peyrot
2015-06-19Make the call stack entries not editableGreg Wicks
2015-05-30Move video_core/color.h to common/color.harchshift
2015-05-30Move video_core/math.h to common/vector_math.harchshift
The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
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