summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-23Fix a few warnings.Tony Wasserka
Templates shouldn't be marked as inline if they aren't defined in the header.
2014-07-23GPU: Clarify display transfer code.Tony Wasserka
Also makes the illogical component order more obvious.
2014-07-23GPU: Add documentation.Tony Wasserka
2014-07-23GSP: Add a few comments.Tony Wasserka
2014-07-23GSP: Clean up GX command processing a lot and treat command id as a u8 ↵Tony Wasserka
rather than a u32. Anonymous structs are not standard C++, hence don't use them.
2014-07-23RegisterSet: Simplify code by using structs for register definition instead ↵Tony Wasserka
of unions.
2014-07-23GPU: Make use of RegisterSet.Tony Wasserka
2014-07-23GPU: Make framebuffer code format-aware.Tony Wasserka
2014-07-23Renderer: Fix component order in bottom framebuffer.Tony Wasserka
2014-07-23Renderer: Respect the active_fb GPU register.Tony Wasserka
2014-07-23Renderer: Add a few TODOs.Tony Wasserka
2014-07-23GPU: Interface cleanup.Tony Wasserka
2014-07-23GPU: Initialize GPU registers to some sensible default state.Tony Wasserka
2014-07-23GPU: Emulate memory fills.Tony Wasserka
2014-07-23GPU: Add proper framebuffer register handling.Tony Wasserka
2014-07-23GPU: Properly implement display transfers.Tony Wasserka
2014-07-23GPU: Add display transfer configuration.Tony Wasserka
2014-07-23GSP: HLE GXCommandId::SET_DISPLAY_TRANSFER and GXCommandId::SET_TEXTURE_COPY.Tony Wasserka
2014-07-23GSP: Implement ReadHWRegs and WriteHWRegs properly.Tony Wasserka
2014-07-22Use a more compatible choice of initial framebuffer addresses.Tony Wasserka
2014-07-22GPU debugger: Don't keep track of debugging data if no debugger views are ↵Tony Wasserka
active.
2014-07-21Merge pull request #32 from yuriks/masterbunnei
[build] Search for the git binary in the default msysgit install dir
2014-07-21Merge pull request #33 from lioncash/redefsbunnei
core: Kill off type redefenitions in armdefs.h
2014-07-19core: Kill off type redefenitions in armdefs.hLioncash
2014-07-19[build] Search for the git binary in the default msysgit install dirYuri Kunde Schlesner
The Git for Windows installer doesn't add the Git binaries to the path by default. (Due to risk of conflicts with built-in windows commands.) Unless you have configured your system specially this causes the scm_rev_gen.js script to fail to find Git. Added more paths to the script so that it searches in the default msysgit installation directory, eliminating the need to set the PATH for most environments.
2014-07-17Merge pull request #30 from neobrain/bitfield_workTony Wasserka
BitField additions and fixes
2014-07-16BitField: Cast enum values to proper integer type.Tony Wasserka
2014-07-16BitField: Add a static_assert.Tony Wasserka
Being able to store BitField within unions requires BitField to be of standard layout, which in turn is only given if the underlying type is also has standard layout.
2014-07-16BitField: Delete copy assignment to prevent obscure bugs.Tony Wasserka
Cf. https://github.com/dolphin-emu/dolphin/pull/483
2014-07-16BitField: Add an explicit evaluation method.Tony Wasserka
Sometimes it can be beneficial to use this in places where an explicit cast needs to happen otherwise. By using the evaluation method, it's not necessary anymore to explicitly write the underlying type in this case.
2014-07-08Merge pull request #29 from bunnei/address-arbitersbunnei
Adds address arbiters to kernel HLE
2014-07-08Kernel: Added preliminary support for address arbiters.bunnei
AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace.
2014-07-08Thread: Added functions to resume threads from address arbitration.bunnei
Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function.
2014-07-07function_wrappers: Fixed incorrect wrapper, added another.bunnei
2014-07-05Merge pull request #28 from bunnei/shared-memorybunnei
Shared memory - adds preliminary support for shared memory kernel objects and correct block mapping.
2014-07-05SharedMemory: Updated MapSharedMemory to use an enum for permissions.bunnei
- Also added some safety checks to MapSharedMemory.
2014-07-05Memory: Removed deprecated MapBlock_Shared function.bunnei
2014-07-05GSP: Fixed to use real shared memory object, various cleanups.bunnei
- 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.
2014-07-05Kernel: Added support for shared memory objects.bunnei
SharedMemory: Added optional name field for tracking known objects.
2014-07-04mem_map: Updated interface to expose template functions to other modules.bunnei
2014-07-04Merge pull request #26 from bunnei/romfs-archivebunnei
Adds preliminary RomFS archive support
2014-07-04NCCH: Updated ExeFS memory allocation to be safer.bunnei
2014-07-04Archive: Added Init/Shutdown methods to reset kernel archive state.bunnei
2014-07-04Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as ↵bunnei
"override".
2014-07-04Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS classes as "final"bunnei
2014-07-04Loader: Updated read methods to be constbunnei
- Required "file" handle to be made local and explicitly opened/closed as needed
2014-07-04Qt: Updated open dialog to include NCCH formats.bunnei
2014-07-04FileSys: Added preliminary support for applications reading the RomFS archive.bunnei
Archive: Fixed brace ugliness for neobrain :) FS: Commented out unused local variables to prevent warnings. ...But keeping them here for future use. archive_romfs: Removed unused #include.
2014-07-04APT: Added stubbed ReceiveParameter and various cleanups.bunnei
APT: More cleanups. APT: Changed SignalType to be type u32.
2014-06-27Loader: Refactored interface such that data is no longer stored by loader.bunnei
NCCH: Removed extra qualification ‘Loader::AppLoader_NCCH::’.