aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/debugger/graphics_framebuffer.cpp
Commit message (Collapse)AuthorAge
* Print error on unknown framebuffer formatHEADmasterGravatar Benjamin Barenblat2015-08-15
| | | | | Trigger a `LOG_CRITICAL` if `GraphicsFramebufferWidget::BytesPerPixel` gets called with `GraphicsFramebufferWidget::Format::Unknown`.
* citra-qt: Add depth formats to framebuffer viewing widget.Gravatar Tony Wasserka2015-07-13
|
* citra-qt: Properly specify the framebuffer format.Gravatar Tony Wasserka2015-07-13
|
* Move video_core/color.h to common/color.hGravatar archshift2015-05-30
|
* Pica: Create 'State' structure and move state memory there.Gravatar bunnei2015-05-22
|
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-15
| | | | | | | 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.
* Memory: Add GetPhysicalPointer helper functionGravatar Yuri Kunde Schlesner2015-05-09
|
* Memory: Support more regions in the VAddr-PAddr translation functionsGravatar Yuri Kunde Schlesner2015-05-09
| | | | | Also adds better documentation and removes the one-off reimplementation of the function in pica.h.
* GPU: Added the stencil test structure to the Pica Regs struct.Gravatar Subv2015-03-09
|
* Frontend/Qt: Allow the framebuffer widget to inspect the depth bufferGravatar Subv2015-03-09
|
* GPU: Added RGB565/RGB8 framebuffer support and various cleanups.Gravatar bunnei2015-03-03
| | | | | | - Centralizes color format encode/decode functions. - Fixes endianness issues. - Implements remaining framebuffer formats in the debugger.
* GPU: Implemented bits 3 and 1 from the display transfer flags.Gravatar Subv2015-02-26
| | | | | 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.
* Pica/DebugUtils: Factor out BreakPointObserverDock into its own file.Gravatar Tony Wasserka2015-02-11
|
* Silence a few warnings.Gravatar Rohit Nirmal2015-01-30
|
* citra-qt: Add explicit casts to prevent some warnings.Gravatar Subv2015-01-10
|
* citra-qt: Fixed some Qt errors on initializationGravatar Subv2015-01-10
|
* citra-qt: Renamed all .hxx headers to .hGravatar chrisvj2015-01-06
|
* Merge pull request #272 from rohit-n/sign-compareGravatar bunnei2015-01-05
|\ | | | | Silence some -Wsign-compare warnings.
| * Silence some -Wsign-compare warnings.Gravatar Rohit Nirmal2015-01-01
| |
* | Pica: Cleanup color conversion.Gravatar Tony Wasserka2014-12-31
| |
* | citra-qt: Fix displaying RGBA5551 framebuffers.Gravatar Tony Wasserka2014-12-31
| | | | | | | | (not that it matters at the moment, because this code is not used yet)
* | citra-qt: Always show pica framebuffers as RGBA8.Gravatar Tony Wasserka2014-12-31
|/ | | | We actually don't really know yet how the format is encoded. Hence just use what works.
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ | | | | License change
| * License changeGravatar purpasmart962014-12-20
| |
* | Pica: Unify ugly address translation hacks.Gravatar Tony Wasserka2014-12-20
| |
* | citra-qt: Fix invalid memory read upon program startup.Gravatar Tony Wasserka2014-12-20
| | | | | | | | This was caused by the framebuffer display widget not checking whether we are actually in a valid emulation state or not.
* | Clean up some warningsGravatar Chin2014-12-20
|/
* Some code cleanup.Gravatar Tony Wasserka2014-12-09
|
* citra-qt: Add pica framebuffer widget.Gravatar Tony Wasserka2014-12-09