bunnei
8cda0ea59f
Merge pull request #1600 from DarkLordZach/nsp-secondary-loader-fix
loader/nsp: Move secondary loader initialization to constructor
7 years ago
bunnei
1c406538b6
Merge pull request #1582 from Tinob/master
Implement sRGB support
7 years ago
Rodolfo Bogado
1670155ee2
Implement sRGB Support, including workarounds for nvidia driver issues and QT sRGB support
7 years ago
bunnei
7323124f91
Merge pull request #1602 from DarkLordZach/key-derivation-isxdigit
key_manager: Use isxdigit instead of isdigit when reading key file
7 years ago
Zach Hilman
74802ed32a
key_manager: Use isxdigit instead of isdigit when reading key file
Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit.
7 years ago
bunnei
3ca995cd9a
Merge pull request #1597 from lioncash/error
configure_system: Indicate when filesystem operations fail
7 years ago
bunnei
ca9c311f85
Merge pull request #1594 from FreddyFunk/static-cast
gl_rasterizer_cache: Fix compiler warning
7 years ago
bunnei
5bff98c4be
Merge pull request #1596 from FearlessTobi/port-4367
Port citra-emu/citra#4367 : "cubeb_sink: ignore null-name device when selecting"
7 years ago
bunnei
d9cfb9dc15
Merge pull request #1592 from bunnei/prim-restart
gl_rasterizer: Implement primitive restart.
7 years ago
bunnei
71c71b7572
Merge pull request #1599 from FernandoS27/stalemate
Implement Default Block Height for each format
7 years ago
FernandoS27
6540abe0d7
Implement Default Block Height for each format
7 years ago
Zach Hilman
bd78dc0c29
loader/nsp: Move secondary loader initialization to constructor
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
7 years ago
Frederic Laing
a2ce78114e
gl_rasterizer_cache: Fix compiler warning
7 years ago
Lioncash
f7d6c35085
configure_system: Make GetIcon() return the scaled 64x64 icon
Avoids the need to put the scaling parameters all over the place for the
common case. The only other time scaling is done is to generate the
smaller 48x48 image, so this is fine.
7 years ago
Lioncash
f4272e65b8
configure_system: Move entry formatting for the user account list entries to its own function
Avoids the need to duplicate this all over the place, and makes it
translator-friendly across the board.
7 years ago
Lioncash
2099e41b17
configure_system: Display errors to the user if file operations fail when setting user images
We should display an error to the user if setting a user image for an
account fails, rather than continuing onwards.
7 years ago
Weiyi Wang
8c7a40434a
cubeb_sink: ignore null-name device when selecting
We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list
7 years ago
bunnei
b22ff96e0a
gl_rasterizer: Implement primitive restart.
7 years ago
bunnei
688ddb4c94
Merge pull request #1533 from FernandoS27/lmem
Implemented Shader Local Memory
7 years ago
bunnei
96d131ebc1
Merge pull request #1430 from DarkLordZach/remove-promote-dir
vfs: Remove InterpretAsDirectory and related functions
7 years ago
bunnei
37f48fefb7
Merge pull request #1591 from bunnei/depth-range
gl_rasterizer: Implement depth range.
7 years ago
bunnei
2bc1f075bb
maxwell_3d: Add code for initializing register defaults.
7 years ago
bunnei
2854218179
Merge pull request #1569 from lioncash/amiibo
yuzu/main: Notify user of loading errors with Amiibo data
7 years ago
bunnei
101c0f30b3
Merge pull request #1587 from lioncash/private
configure_system: Minor cleanup-related changes
7 years ago
bunnei
4a662b79ed
Merge pull request #1557 from bunnei/ldr_ro
Implement the LoadNro functions from the ldr:ro service.
7 years ago
bunnei
419b62982f
gl_rasterizer: Implement depth range.
7 years ago
bunnei
c86d76d65c
ldr: Partially implement LoadNro.
- This is an incomplete implementation. It was tested with Super Mario Party.
7 years ago
bunnei
bdb2835028
process: LoadModule should clear JIT instruction cache.
7 years ago
bunnei
59b8f91cb2
Kernel/Memory: Added a function to first a suitable guest address at which to allocate a region of a given size.
7 years ago
bunnei
ae5b0d437f
nro: Make LoadNro method accessible outside of apploader code.
7 years ago
Mat M
2c91b13526
Merge pull request #1583 from DarkLordZach/rle-size
ips_layer: Use rle_size instead of data_size in RLE patch application
7 years ago
Lioncash
062bf90622
configure_system: Make the file selector text translatable
This should be localizable, since it's user-facing text.
7 years ago
Lioncash
73dea24300
configure_system: Make GetAccountUsername() an internal function
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.
7 years ago
Lioncash
f38577db9a
configure_system: Default initialize member variables
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.
7 years ago
Lioncash
45c01544a6
configure_system: Simplify UUID generation call in AddUser()
This is a static function so we can just perform an assignment directly.
7 years ago
Lioncash
e39e875547
configure_system: Amend function casing
7 years ago
Lioncash
6a0e8f4357
configure_system: Add missing override specifier on the destructor
7 years ago
Lioncash
49882458f5
configure_system: Make public slots private
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.
7 years ago
James Rowe
4840e32841
Merge pull request #1584 from FearlessTobi/patch-3
Delete git file
7 years ago
Tobias
c518b8174e
Delete git
7 years ago
Zach Hilman
0bb4dbc74b
ips_layer: Use rle_size instead of data_size in RLE patch application
Prevents a potential bug when using RLE records in an IPS patch.
7 years ago
bunnei
47ca03016e
Merge pull request #1579 from lioncash/usb
service/usb: Update service function tables
7 years ago
bunnei
1c59a4234a
Merge pull request #1576 from lioncash/acc-warn
service/acc: Silence compiler truncation warnings
7 years ago
bunnei
b113cf4aab
Merge pull request #1577 from lioncash/err
kernel/error: Amend error return code values
7 years ago
bunnei
6bf7e0d83d
Merge pull request #1524 from FernandoS27/layers-fix
rasterizer: Fix Layered Textures Loading and Cubemaps
7 years ago
bunnei
418febe1e4
Merge pull request #1575 from lioncash/qstring
game_list_worker: Use QString's formatting instead of fmt in FormatPatchNameVersions()
7 years ago
Lioncash
64968341b7
service/usb: Update service function tables
Updated based off the information provided by Hexkyz on Switchbrew.
7 years ago
Lioncash
9c03c5ac8a
service/acc: Move fallback image to file scope
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().
7 years ago
Lioncash
6da246b0c2
service/acc: Silence compiler warnings
Silences compiler warnings related to truncation. This also introduces a
small helper function to perform the clamping of the image size.
7 years ago
Lioncash
8eec717cce
service/acc: Early return in failure case in LoadImage()
Allows unindenting the other branch's code.
7 years ago