summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/gsp.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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