Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-19 | Merge pull request #699 from lioncash/vfs | bunnei | |
vfs: Deduplicate accumulation code in VfsDirectory's GetSize() | |||
2018-07-19 | Merge pull request #697 from bunnei/disable-depth-cull | bunnei | |
gl_state: Temporarily disable culling and depth test. | |||
2018-07-18 | Merge pull request #692 from lioncash/assign | bunnei | |
address_arbiter: Correct assignment within an assertion statement in WakeThreads() | |||
2018-07-18 | Merge pull request #690 from lioncash/move | bunnei | |
core/memory, core/hle/kernel: Use std::move where applicable | |||
2018-07-18 | gl_state: Temporarily disable culling and depth test. | bunnei | |
2018-07-18 | vfs: Deduplicate accumulation code in VfsDirectory's GetSize() | Lioncash | |
We can just use a generic lambda to avoid writing the same thing twice. | |||
2018-07-18 | Merge pull request #691 from lioncash/guard | bunnei | |
service/prepo: Add missing header guard | |||
2018-07-18 | Merge pull request #686 from lioncash/fmt | bunnei | |
externals: update fmt to version 5.1.0 | |||
2018-07-18 | Merge pull request #688 from lioncash/comma | bunnei | |
vm_manager: Add missing commas to string literal array elements in GetMemoryStateName() | |||
2018-07-18 | Merge pull request #693 from lioncash/unused | bunnei | |
core/memory: Remove unused function GetSpecialHandlers() and an unused variable in ZeroBlock() | |||
2018-07-18 | Merge pull request #687 from lioncash/instance | bunnei | |
core: Don't construct instance of Core::System, just to access its live instance | |||
2018-07-18 | Merge pull request #680 from bunnei/fix-swizz | bunnei | |
decoders: Fix calc of swizzle image_width_in_gobs. | |||
2018-07-18 | Merge pull request #684 from lioncash/nonmember | bunnei | |
game_list: Make ContainsAllWords an internally linked non-member function | |||
2018-07-18 | decoders: Fix calc of swizzle image_width_in_gobs. | bunnei | |
2018-07-18 | Virtual Filesystem 2: Electric Boogaloo (#676) | Zach Hilman | |
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression | |||
2018-07-18 | core/memory: Remove unused function GetSpecialHandlers() and an unused ↵ | Lioncash | |
variable in ZeroBlock() | |||
2018-07-18 | address_arbiter: Correct assignment within an assertion statement in ↵ | Lioncash | |
WakeThreads() This was introduced within 4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0, and considering there's no comment indicating that this is intentional, this is very likely a bug. | |||
2018-07-18 | service/prepo: Add missing header guard | Lioncash | |
2018-07-18 | vm_manager: Add missing commas to string literal array elements in ↵ | Lioncash | |
GetMemoryStateName() Without these, this would perform concatenation, which is definitely not what we want here. | |||
2018-07-18 | core/memory, core/hle/kernel: Use std::move where applicable | Lioncash | |
Avoids pointless copies | |||
2018-07-18 | core: Make System's default constructor private | Lioncash | |
This makes it a compilation error to construct additional instances of the System class directly, preventing accidental wasteful constructions over and over. | |||
2018-07-18 | core: Don't construct instance of Core::System, just to access its live instance | Lioncash | |
This would result in a lot of allocations and related object construction, just to toss it all away immediately after the call. These are definitely not intentional, and it was intended that all of these should have been accessing the static function GetInstance() through the name itself, not constructed instances. | |||
2018-07-18 | externals: update fmt to version 5.1.0 | Lioncash | |
Previously, we were on 4.1.0, which was a major version behind. | |||
2018-07-18 | game_list: Make ContainsAllWords an internally linked non-member function | Lioncash | |
This function actually depends on no internal class state, so it doesn't even need to be a part of the class interface. | |||
2018-07-18 | Fill in more fields in TouchScreenEntryTouch | Zach Hilman | |
2018-07-18 | Single touch support | Zach Hilman | |
2018-07-18 | Merge pull request #681 from lioncash/const | bunnei | |
game_list: Make containsAllWords a const member function | |||
2018-07-18 | Merge pull request #682 from lioncash/telemetry | bunnei | |
Telemetry: Minor changes | |||
2018-07-17 | Merge pull request #679 from lioncash/ctor | bunnei | |
game_list: Remove unnecessary QString initialization in KeyReleaseEater | |||
2018-07-17 | Merge pull request #678 from lioncash/astc | bunnei | |
astc: Minor changes | |||
2018-07-18 | telemetry: Remove unnecessary Field constructor | Lioncash | |
We can just take the value parameter by value which allows both moving into it, and copies at the same time, depending on the calling code. | |||
2018-07-18 | telemetry: Make operator== and operator!= const member functions of Field | Lioncash | |
These operators don't modify internal class state, so they can be made const member functions. While we're at it, drop the unnecessary inline keywords. Member functions that are defined in the class declaration are already inline by default. | |||
2018-07-18 | telemetry: Default copy/move constructors and assignment operators | Lioncash | |
This provides the equivalent behavior, but without as much boilerplate. While we're at it, explicitly default the move constructor, since we have a move-assignment operator defined. | |||
2018-07-18 | game_list: Upper-case containsAllWords to ContainsAllWords() | Lioncash | |
This makes it consistent with most of the other private utility functions. | |||
2018-07-18 | game_list: Make containsAllWords a const member function | Lioncash | |
This doesn't actually modify the internal class state, so it can be a const member function. While we're at it, amend the function to take its arguments by const reference. | |||
2018-07-18 | game_list: Remove unnecessary QString initialization in KeyReleaseEater | Lioncash | |
QString initializes to an empty string by default, so this does nothing meaningful. While we're at it, use a constructor initializer list for initializing the gamelist member variable. | |||
2018-07-17 | astc: Initialize vector size directly in Decompress | Lioncash | |
There's no need to perform a separate resize. | |||
2018-07-17 | astc: Mark functions as internally linked where applicable | Lioncash | |
2018-07-17 | astc: const-correctness changes where applicable | Lioncash | |
A few member functions didn't actually modify class state, so these can be amended as necessary. | |||
2018-07-17 | astc: Delete Bits' copy contstructor and assignment operator | Lioncash | |
This also potentially avoids warnings, considering the copy assignment operator is supposed to have a return value. | |||
2018-07-17 | astc: In-class initialize member variables where appropriate | Lioncash | |
2018-07-17 | settings: Turn docked mode off by default. | bunnei | |
2018-07-17 | vi: Change TransactionId::CancelBuffer to LOG_CRITICAL. | bunnei | |
2018-07-17 | vi: Fix size for ListDisplays default display. | bunnei | |
2018-07-17 | vi: Partially implement buffer crop parameters. | bunnei | |
2018-07-17 | Merge pull request #675 from Subv/stencil | bunnei | |
GPU: Added register definitions for the stencil parameters. | |||
2018-07-17 | GPU: Added register definitions for the stencil parameters. | Subv | |
2018-07-17 | General Filesystem and Save Data Fixes (#670) | Zach Hilman | |
2018-07-17 | Merge pull request #671 from MerryMage/clear-exclusive-state | bunnei | |
scheduler: Clear exclusive state when switching contexts | |||
2018-07-17 | Merge pull request #672 from SciresM/to_address_fix | bunnei | |
svc:: Fix bug in svcWaitForAddress |