aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Merge pull request #644 from archshift/nihstroGravatar bunnei2015-03-08
|\ | | | | Update nihstro submodule to the initial release version.
* \ Merge pull request #584 from yuriks/outline-assertsGravatar bunnei2015-03-08
|\ \ | | | | | | Asserts: Use lambdas to keep assertion code away from the main code path
| | * Update nihstro submodule to the initial release version.Gravatar archshift2015-03-08
| |/ |/| | | | | Includes more opcodes to implement in the future.
* | Merge pull request #639 from archshift/appbundleGravatar archshift2015-03-07
|\ \ | | | | | | Build app bundles on OS X. Fixes the issue where the menubar would not appear.
* | | default_ini.h: Put comments on their own linesGravatar archshift2015-03-07
| | | | | | | | | | | | Apparently inline comments is not necessarily standard in the INI format, and our parser was erroneously parsing the comments as values.
| * | Build app bundles on OS X. Fixes the issue where the menubar would not appear.Gravatar archshift2015-03-07
|/ /
* | 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
| | |
* | | 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
* | | | 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
| | | | |
* | | | | 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.
| | * | | | 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.
* | | arm: The CP15 Main ID register is not writeableGravatar Lioncash2015-02-26
|/ /
* | 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.
* | | 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
* | | | 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
* | | | 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.
* \ \ Merge pull request #581 from archshift/tfeGravatar bunnei2015-02-23
|\ \ \ | | | | | | | | Added information reporting from ThrowFatalError
* | | | GPU: Fixed RGBA8 as output format in a display transfer.Gravatar Subv2015-02-22
| | | | | | | | | | | | | | | | Verified with hwtests
| * | | Added information reporting from ThrowFatalErrorGravatar archshift2015-02-22
| | | | | | | | | | | | | | | | This was RE'd from the errdisp applet.
| | * | Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.Gravatar Emmanuel Gil Peyrot2015-02-22
| | | |