summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/graphics_framebuffer.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-05-07citra_qt: Replace 'Pica Framebuffer Debugger' with 'Pica Surface Viewer'Gravatar Jannik Vogel1-356/+0
2016-04-23debugger: Warn if we reach an unreachable formatGravatar Sam Spilsbury1-0/+6
2016-03-02Add immediate mode vertex submissionGravatar Dwayne Slater1-0/+1
2015-09-11citra_qt: Reorganize headersGravatar Lioncash1-5/+4
2015-07-13citra-qt: Add depth formats to framebuffer viewing widget.Gravatar Tony Wasserka1-4/+30
2015-07-13citra-qt: Properly specify the framebuffer format.Gravatar Tony Wasserka1-2/+26
2015-05-30Move video_core/color.h to common/color.hGravatar archshift1-1/+2
2015-05-22Pica: Create 'State' structure and move state memory there.Gravatar bunnei1-2/+2
2015-05-15Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner1-0/+2
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 functionGravatar Yuri Kunde Schlesner1-1/+1
2015-05-09Memory: Support more regions in the VAddr-PAddr translation functionsGravatar Yuri Kunde Schlesner1-1/+1
Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
2015-03-09GPU: Added the stencil test structure to the Pica Regs struct.Gravatar Subv1-3/+3
2015-03-09Frontend/Qt: Allow the framebuffer widget to inspect the depth bufferGravatar Subv1-4/+59
2015-03-03GPU: Added RGB565/RGB8 framebuffer support and various cleanups.Gravatar bunnei1-57/+31
- Centralizes color format encode/decode functions. - Fixes endianness issues. - Implements remaining framebuffer formats in the debugger.
2015-02-26GPU: Implemented bits 3 and 1 from the display transfer flags.Gravatar Subv1-6/+16
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-11Pica/DebugUtils: Factor out BreakPointObserverDock into its own file.Gravatar Tony Wasserka1-27/+0
2015-01-30Silence a few warnings.Gravatar Rohit Nirmal1-2/+2
2015-01-10citra-qt: Add explicit casts to prevent some warnings.Gravatar Subv1-2/+2
2015-01-10citra-qt: Fixed some Qt errors on initializationGravatar Subv1-2/+2
2015-01-06citra-qt: Renamed all .hxx headers to .hGravatar chrisvj1-2/+2
2015-01-01Silence some -Wsign-compare warnings.Gravatar Rohit Nirmal1-8/+8
2014-12-31Pica: Cleanup color conversion.Gravatar Tony Wasserka1-8/+5
2014-12-31citra-qt: Fix displaying RGBA5551 framebuffers.Gravatar Tony Wasserka1-0/+4
(not that it matters at the moment, because this code is not used yet)
2014-12-31citra-qt: Always show pica framebuffers as RGBA8.Gravatar Tony Wasserka1-1/+2
We actually don't really know yet how the format is encoded. Hence just use what works.
2014-12-20License changeGravatar purpasmart961-1/+1
2014-12-20Pica: Unify ugly address translation hacks.Gravatar Tony Wasserka1-4/+4
2014-12-20citra-qt: Fix invalid memory read upon program startup.Gravatar Tony Wasserka1-1/+2
This was caused by the framebuffer display widget not checking whether we are actually in a valid emulation state or not.
2014-12-20Clean up some warningsGravatar Chin1-6/+6
2014-12-09Some code cleanup.Gravatar Tony Wasserka1-2/+2
2014-12-09citra-qt: Add pica framebuffer widget.Gravatar Tony Wasserka1-0/+282