summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/gsp.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Renamed souce files of services to match port namesGareth Poole2014-10-291-378/+0
|
* added "StoreDataCache" to the function tablepurpasmart962014-09-301-0/+1
| | | seems simple enough
* core: Prune redundant includesarchshift2014-09-091-1/+0
|
* Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.Tony Wasserka2014-08-251-5/+0
|
* GSP: Update framebuffer information when necessary.Tony Wasserka2014-08-251-2/+23
|
* GSP: Implement SetBufferSwap.Tony Wasserka2014-08-251-1/+35
|
* GSP: Add a helper function for convenience.Tony Wasserka2014-08-251-17/+22
|
* Pica/GPU: Change hardware registers to use physical addresses rather than virtual ones.Tony Wasserka2014-08-121-9/+9
| | | | | This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though.
* GSP: Fix a major regression introduced in ffda035c, due to which no display transfers were triggered at all anymore.Tony Wasserka2014-08-121-4/+13
|
* Remove the fancy RegisterSet class introduced in 4c2bff61e.Tony Wasserka2014-08-121-18/+18
| | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use.
* GSP: Cleaned up command buffer decoding.bunnei2014-08-071-42/+42
| | | | | | | | GSP: Cleaned up code and added additional comments. GSP: Removed unnecessary TODO comment. GSP: Changed u32 iterators in TriggerCmdReqQueue to unsigned.
* GSP: Added reinitialization of other state objects.bunnei2014-08-061-0/+3
|
* GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.bunnei2014-08-061-64/+24
| | | | - Various other cleanups.
* GSP: Removed unnecessary GX_FinishCommand function.bunnei2014-08-061-13/+5
|
* GSP: Implements preliminary command synchronization via GPU interrupts.bunnei2014-08-061-18/+93
| | | | Core: Added a comment to explain the logic for the RunLoop iterations.
* GSP: Add a few comments.Tony Wasserka2014-07-231-1/+7
|
* GSP: Clean up GX command processing a lot and treat command id as a u8 rather than a u32.Tony Wasserka2014-07-231-26/+38
| | | | Anonymous structs are not standard C++, hence don't use them.
* GPU: Make use of RegisterSet.Tony Wasserka2014-07-231-21/+28
|
* GPU: Emulate memory fills.Tony Wasserka2014-07-231-0/+8
|
* GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY.Tony Wasserka2014-07-231-2/+9
|
* GSP: Implement ReadHWRegs and WriteHWRegs properly.Tony Wasserka2014-07-231-27/+46
|
* GSP: Fixed to use real shared memory object, various cleanups.bunnei2014-07-051-25/+34
| | | | | | | | - Previously, used a hard-coded shared memory handle of 0x10002000 (as used by libctru homebrew) GSP: Added name for shared memory. GSP: Cleaned up assertion message.
* Merge branch 'threading' of https://github.com/bunnei/citrabunnei2014-06-141-30/+44
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei2014-06-131-28/+28
| |
| * HLE: Updated various handle debug assertions to be more clear.bunnei2014-06-131-1/+1
| |
| * gsp: always pass through synchronization barrier for commandsbunnei2014-06-011-1/+16
| |
| * hle: cleaned up log messagesbunnei2014-05-301-2/+2
| |
* | GPU debugger: Add functionality to inspect command lists.Tony Wasserka2014-06-121-0/+4
| |
* | GPU: Cleanup register definitions.Tony Wasserka2014-06-121-3/+3
| |
* | Rename LCD to GPU.Tony Wasserka2014-06-121-8/+8
| |
* | Add initial graphics debugger interface.Tony Wasserka2014-06-121-0/+6
| |
* | GSP: Define more GX commands.Tony Wasserka2014-06-121-14/+37
|/
* - renamed NewHandle to CreateHandlebunnei2014-05-191-3/+1
| | | | - updated CreateHandle/DeleteHandle to use KernelObject's
* removed unknown fields from GX_CmdBufferHeaderbunnei2014-05-081-5/+0
|
* - removed HLE mem "hack" and replaced with kernel mem regionbunnei2014-05-081-5/+71
| | | | | - added a helper function for getting command buffer for services - fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
* hackish but working way to set the framebuffer location to VRAM (used in ARM11 demos tested thus far, e.g. yeti3DS)bunnei2014-04-271-3/+9
|
* added simple GSP GPU ReadHWRegs function to support returning the framebuffer addressbunnei2014-04-261-1/+37
|
* added GSP::RegisterInterruptRelayQueue functionbunnei2014-04-251-31/+40
|
* updated service commentsbunnei2014-04-171-0/+3
|
* - added stubbed out GSP::Gpu service interfacebunnei2014-04-161-0/+56
- various cleanups/refactors to HLE services