Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-26 | gl_rasterizer: Implement primitive restart. | bunnei | |
2018-10-26 | Merge pull request #1533 from FernandoS27/lmem | bunnei | |
Implemented Shader Local Memory | |||
2018-10-26 | Merge pull request #1430 from DarkLordZach/remove-promote-dir | bunnei | |
vfs: Remove InterpretAsDirectory and related functions | |||
2018-10-26 | Merge pull request #1591 from bunnei/depth-range | bunnei | |
gl_rasterizer: Implement depth range. | |||
2018-10-25 | maxwell_3d: Add code for initializing register defaults. | bunnei | |
2018-10-25 | Merge pull request #1569 from lioncash/amiibo | bunnei | |
yuzu/main: Notify user of loading errors with Amiibo data | |||
2018-10-25 | Merge pull request #1587 from lioncash/private | bunnei | |
configure_system: Minor cleanup-related changes | |||
2018-10-25 | gl_rasterizer: Implement depth range. | bunnei | |
2018-10-25 | ldr: Partially implement LoadNro. | bunnei | |
- This is an incomplete implementation. It was tested with Super Mario Party. | |||
2018-10-25 | process: LoadModule should clear JIT instruction cache. | bunnei | |
2018-10-25 | Kernel/Memory: Added a function to first a suitable guest address at which ↵ | bunnei | |
to allocate a region of a given size. | |||
2018-10-25 | nro: Make LoadNro method accessible outside of apploader code. | bunnei | |
2018-10-25 | configure_system: Make the file selector text translatable | Lioncash | |
This should be localizable, since it's user-facing text. | |||
2018-10-25 | configure_system: Make GetAccountUsername() an internal function | Lioncash | |
We can just make the function accept an arbitrary ProfileManager reference and operate on that instead of tying the function to the class itself. This allows us to keep the function internal to the cpp file and removes the need to forward declare the UUID struct. | |||
2018-10-25 | configure_system: Default initialize member variables | Lioncash | |
These should be initialized to deterministic values so it's easier to catch improper behavior, as it'll always be reproducable, instead of performing uninitialized reads. | |||
2018-10-25 | configure_system: Simplify UUID generation call in AddUser() | Lioncash | |
This is a static function so we can just perform an assignment directly. | |||
2018-10-25 | configure_system: Amend function casing | Lioncash | |
2018-10-25 | configure_system: Add missing override specifier on the destructor | Lioncash | |
2018-10-25 | configure_system: Make public slots private | Lioncash | |
These are only used within this class, so we can make them private to keep their use contained. This also gets rid of the pre-Qt5 'slot' identifier, since Qt 5's connection syntax doesn't require a function to be declared a slot anymore. | |||
2018-10-25 | ips_layer: Use rle_size instead of data_size in RLE patch application | Zach Hilman | |
Prevents a potential bug when using RLE records in an IPS patch. | |||
2018-10-25 | Merge pull request #1579 from lioncash/usb | bunnei | |
service/usb: Update service function tables | |||
2018-10-25 | Merge pull request #1576 from lioncash/acc-warn | bunnei | |
service/acc: Silence compiler truncation warnings | |||
2018-10-25 | Merge pull request #1577 from lioncash/err | bunnei | |
kernel/error: Amend error return code values | |||
2018-10-25 | Merge pull request #1524 from FernandoS27/layers-fix | bunnei | |
rasterizer: Fix Layered Textures Loading and Cubemaps | |||
2018-10-24 | Merge pull request #1575 from lioncash/qstring | bunnei | |
game_list_worker: Use QString's formatting instead of fmt in FormatPatchNameVersions() | |||
2018-10-24 | service/usb: Update service function tables | Lioncash | |
Updated based off the information provided by Hexkyz on Switchbrew. | |||
2018-10-24 | service/acc: Move fallback image to file scope | Lioncash | |
This is just flat data, so it doesn't really need to be in the function itself. This also allows deduplicating the constant for the backup size in GetImageSize(). | |||
2018-10-24 | service/acc: Silence compiler warnings | Lioncash | |
Silences compiler warnings related to truncation. This also introduces a small helper function to perform the clamping of the image size. | |||
2018-10-24 | service/acc: Early return in failure case in LoadImage() | Lioncash | |
Allows unindenting the other branch's code. | |||
2018-10-24 | Merge pull request #1570 from lioncash/optional | bunnei | |
profile_manager: Use std::optional instead of boost::optional | |||
2018-10-24 | Merge pull request #1558 from lioncash/ptr | bunnei | |
yuzu/configuration/config: Use a std::unique_ptr for qt_config instead of a raw pointer | |||
2018-10-24 | Implemented LD_L and ST_L | FernandoS27 | |
2018-10-24 | Implement Shader Local Memory | FernandoS27 | |
2018-10-24 | Merge pull request #1565 from lioncash/audio | bunnei | |
time_stretch: Remove unused m_channel_count member variable | |||
2018-10-24 | Merge pull request #1554 from FernandoS27/pointsize | bunnei | |
Implement PointSize Output Attribute. | |||
2018-10-24 | Merge pull request #1571 from lioncash/debug-translate | bunnei | |
graphic_breakpoints: Correct translation of strings in BreakpointModel's data() function | |||
2018-10-24 | Merge pull request #1564 from lioncash/npad | bunnei | |
npad: Remove unused controller variable from OnInit() | |||
2018-10-24 | Merge pull request #1568 from lioncash/dir | bunnei | |
game_list: Use QFileInfo instead of common's file functions | |||
2018-10-24 | Merge pull request #1567 from lioncash/translate | bunnei | |
game_list: Make game list column headers translatable | |||
2018-10-24 | Merge pull request #1566 from lioncash/str | bunnei | |
bootmanager: Use QStringLiteral instead of std::string to represent the window title. | |||
2018-10-24 | Merge pull request #1563 from lioncash/frame | bunnei | |
perf_stats: Remove unused variable within DoFrameLimiting() | |||
2018-10-24 | Merge pull request #1562 from lioncash/aoc | bunnei | |
aoc_u: Make use of previously-unused CheckAOCTitleIDMatchesBase() function | |||
2018-10-24 | Merge pull request #1560 from lioncash/unused | bunnei | |
maxwell_3d/decoders: Remove unused variables | |||
2018-10-24 | Merge pull request #1561 from lioncash/fs | bunnei | |
file_sys: Remove unused variables | |||
2018-10-24 | Merge pull request #1559 from lioncash/log | bunnei | |
logging/backend: Add missing services to the log filters | |||
2018-10-24 | kernel/errors: Remove now-unused, unnecessary, error codes | Lioncash | |
Now that we've gotten the innaccurate error codes out of the way, we can finally toss away a bunch of these, trimming down the error codes to ones that are actually used and knocking out two TODO comments. | |||
2018-10-24 | kernel/shared_memory: Return ERR_INVALID_MEMORY_PERMISSIONS instead of ↵ | Lioncash | |
ERR_INVALID_COMBINATION This is more consistent with what the kernel does. | |||
2018-10-24 | kernel/server_port: Simplify emptiness check within ShouldWait() | Lioncash | |
2018-10-24 | kernel/server_port: Change error case return value in Accept() to ERR_NOT_FOUND | Lioncash | |
This is what the kernel does in this instance. | |||
2018-10-24 | kernel/error: Remove leftover 3DS error codes | Lioncash | |
These are now entirely unused and can be removed. |