aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge pull request #638 from bunnei/osx-fixGravatar bunnei2015-03-07
|\ | | | | Fixed EmuWindow typo (fixes OSX build)
| * Fixed EmuWindow typo (fixes OSX build)Gravatar bunnei2015-03-07
|/
* Merge pull request #636 from bunnei/refactor-screen-winGravatar bunnei2015-03-07
|\ | | | | Set framebuffer layout from EmuWindow.
| * Set framebuffer layout from EmuWindow.Gravatar bunnei2015-03-07
| |
* | Merge pull request #637 from Subv/etcGravatar Tony Wasserka2015-03-07
|\ \ | | | | | | GPU/Textures: Fixed ETC texture decoding.
| * | GPU/Textures: Fixed ETC texture decoding.Gravatar Subv2015-03-07
|/ /
* | Merge pull request #538 from yuriks/perf-statGravatar Tony Wasserka2015-03-07
|\ \ | | | | | | Add profiling infrastructure and widget
* \ \ Merge pull request #630 from archshift/swapGravatar bunnei2015-03-06
|\ \ \ | |_|/ |/| | Removed swap code redundancy and moved common swap code to swap.h
| * | Removed swap code redundancy and moved common swap code to swap.hGravatar archshift2015-03-05
|/ /
* | Merge pull request #615 from Subv/servicesGravatar bunnei2015-03-04
|\ \ | | | | | | Services: Moved the PTM and APT services to their own folder
| * | Services: Moved the PTM and APT services to their own folderGravatar Subv2015-03-03
| | | | | | | | | | | | | | | | | | This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
* | | Merge pull request #625 from lioncash/warnGravatar bunnei2015-03-03
|\ \ \ | | | | | | | | vfp: Get rid of warnings
| * | | vfp: Get rid of warningsGravatar Lioncash2015-03-03
| | | |
* | | | Merge pull request #617 from bunnei/framebuffer-rgb565Gravatar bunnei2015-03-03
|\ \ \ \ | |_|/ / |/| | | GPU: Added RGB565/RGB8 framebuffer support and various cleanups.
| * | | 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.
* | | Merge pull request #622 from Subv/titlesGravatar Yuri Kunde Schlesner2015-03-02
|\ \ \ | | | | | | | | Services/AM: Stubbed TitleIDListGetTotal and GetTitleIDList.
| * | | Services/AM: Stubbed TitleIDListGetTotal and GetTitleIDList.Gravatar Subv2015-03-02
| | | | | | | | | | | | | | | | | | | | They will always return 0 titles for every media type for now. This is needed to boot Home Menu further
* | | | Merge pull request #623 from Subv/cardGravatar bunnei2015-03-01
|\ \ \ \ | | | | | | | | | | Services/FS: Stubbed CardSlotIsInserted to always return false
* \ \ \ \ Merge pull request #618 from lioncash/refGravatar bunnei2015-03-01
|\ \ \ \ \ | |_|_|/ / |/| | | | result: Make comparison operators take references
* | | | | Merge pull request #621 from Subv/powerGravatar bunnei2015-03-01
|\ \ \ \ \ | | | | | | | | | | | | Services/PTM: Stubbed PTM_Sysm::IsLegacyPowerOff.
| | | | | * Profiler: Implement QPCClock to get better precision on Win32Gravatar Yuri Kunde Schlesner2015-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MSVC 2013 (at least) doesn't use QueryPerformanceCounter to implement std::chrono::high_resolution_clock, so it has bad precision. Manually implementing our own clock type using it works around this for now.
| | | | | * Add profiling infrastructure and widgetGravatar Yuri Kunde Schlesner2015-03-01
| |_|_|_|/ |/| | | |
| | | * | Services/FS: Stubbed CardSlotIsInserted to always return falseGravatar Subv2015-02-28
| | | |/ | | | | | | | | | | | | We won't be emulating this for the foreseeable future and it is needed for Home Menu to boot further
| * | / Services/PTM: Stubbed PTM_Sysm::IsLegacyPowerOff.Gravatar Subv2015-02-28
| | |/ | |/| | | | | | | This allows the Home Menu to boot further
* | | Merge pull request #616 from archshift/5551Gravatar archshift2015-02-28
|\ \ \ | | | | | | | | Added RGBA5551 compatibility in the rasterizer
* \ \ \ Merge pull request #620 from lioncash/bkptGravatar bunnei2015-02-27
|\ \ \ \ | | | | | | | | | | arm_disasm: Show conditional code for BKPT instructions.
* \ \ \ \ Merge pull request #619 from lioncash/unusedGravatar bunnei2015-02-27
|\ \ \ \ \ | |_|_|/ / |/| | | | arm_disasm: Remove unused variable
| | | * | Added RGBA5551 compatibility in the rasterizerGravatar archshift2015-02-27
| |_|/ / |/| | | | | | | | | | | This allows Virtual Console games to display properly.
| | * | arm_disasm: Show conditional code for BKPT instructions.Gravatar Lioncash2015-02-27
| |/ / |/| | | | | | | | Changed cond_to_str to take a uint32, since unsigned numbers are only ever passed to it, and this can be a source of warnings for some compilers (also indexing an array without bounds checking a signed number is kind of iffy).
| * | arm_disasm: Remove unused variableGravatar Lioncash2015-02-27
|/ / | | | | | | Also declared an array as static, as it's only used in this translation unit.
| * result: Make comparison operators take referencesGravatar Lioncash2015-02-27
|/ | | | It's unnecessary to make copies for simple comparisons like this.
* Merge pull request #599 from Subv/mortonGravatar bunnei2015-02-26
|\ | | | | GPU: Implemented bits 3 and 1 from the display transfer flags.
| * 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.
* | Merge pull request #614 from lioncash/mcrGravatar bunnei2015-02-26
|\ \ | |/ |/| arm: The CP15 Main ID register is not writeable
| * arm: The CP15 Main ID register is not writeableGravatar Lioncash2015-02-26
|/
* Merge pull request #612 from yuriks/fix-A4Gravatar bunnei2015-02-25
|\ | | | | Video core: Fix A4 texture decoding
| * Video core: Fix A4 texture decodingGravatar Yuri Kunde Schlesner2015-02-25
|/ | | | | | | | | It was trying to take the LSB from `coarse_x`, which would always be 0 and thus would always return the same texel from each byte. To add insult to the injury, the conditional was actually the wrong way around too. Fixes blocky text in OoT.
* Merge pull request #604 from Subv/arc_ssdGravatar Yuri Kunde Schlesner2015-02-25
|\ | | | | Archives: Properly implemented the SystemSaveData archive.
* \ Merge pull request #611 from yuriks/pixelated-texturesGravatar Yuri Kunde Schlesner2015-02-25
|\ \ | | | | | | Video core: Fix pixelation/blockiness in textures.
| * | Video core: Fix pixelation/blockiness in textures.Gravatar Yuri Kunde Schlesner2015-02-25
|/ / | | | | | | | | | | This was caused during morton decoding by me not masking the bits of each coordinate before merging them, so the bits from x could set bits in y if it was >255.
| * Archives: Properly implemented the SystemSaveData archive.Gravatar Subv2015-02-25
| | | | | | | | Ported to the new factory pattern we have for archives.
* | Merge pull request #575 from linkmauve/xdgGravatar bunnei2015-02-25
|\ \ | | | | | | Switch to the XDG Base Directory Specification for directory selection
* \ \ Merge pull request #609 from lioncash/remGravatar bunnei2015-02-25
|\ \ \ | | | | | | | | arm: Remove unnecessary booleans
| * | | arm: Remove unnecessary booleansGravatar Lioncash2015-02-25
|/ / / | | | | | | | | | We don't care about any of these.
| * / Common: Switch to the XDG Base Directory Specification for directory selection.Gravatar Emmanuel Gil Peyrot2015-02-25
|/ / | | | | | | This allows for easily movable and independent configuration and data directories, using standardized paths.
* | Merge pull request #601 from Subv/y2rGravatar bunnei2015-02-24
|\ \ | | | | | | Services: Implemented Y2R_U::GetTransferEndEvent
* \ \ Merge pull request #605 from bunnei/rasterize-rgba4Gravatar bunnei2015-02-24
|\ \ \ | |_|/ |/| | rasterizer: Add support for RGBA4 framebuffer format.
| * | Rasterizer: Add support for RGBA4 framebuffer format.Gravatar bunnei2015-02-24
|/ /
| * Services: Implemented Y2R_U::GetTransferEndEventGravatar Subv2015-02-24
|/ | | | Aero Porter was throwing an "Invalid Handle" fatal error without this.
* Merge pull request #595 from linkmauve/new-3ds-inputGravatar bunnei2015-02-23
|\ | | | | Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.