bunnei
b9ab52797b
Merge pull request #1637 from FernandoS27/cache
Improved GPU Caches lookup Speed
7 years ago
bunnei
8f3e10db42
Merge pull request #1697 from lioncash/acc
acc/profile_manager: Minor cleanup-related changes
7 years ago
bunnei
557d658d66
Merge pull request #1696 from lioncash/acc-cond
service/acc: Correct error case within TrySelectUserWithoutInteraction()
7 years ago
bunnei
cab6671ea1
Merge pull request #1695 from lioncash/tr
yuzu/configure_system: Mark the entropy mask string as nontranslatable
7 years ago
Lioncash
7cd4750c41
service/acc: Correct error case within TrySelectUserWithoutInteraction()
empty() in this case will always return false, since the returned
container is a std::array. Instead, check if all given users are invalid
before returning the error code.
7 years ago
Lioncash
373186d4a6
profile_manager: Replace iterative loop with a ranged-for loop in ParseUserSaveFile()
7 years ago
Lioncash
e7a4830abe
profile_manager: Move UUID Format function definitions into the cpp file
Avoids relying on fmt always being indirectly included.
7 years ago
bunnei
ec2dd31554
Merge pull request #1690 from lioncash/nfp
nfp: Correct erroneous sizeof expression within GetTagInfo()
7 years ago
bunnei
8473fbf68b
Merge pull request #1689 from lioncash/break
hid/npad: Add missing break in switch statement within Controller_NPad::OnUpdate
7 years ago
bunnei
942d95010f
Merge pull request #1688 from lioncash/unused
service: Mark MakeFunctionString with the [[maybe_unused]] attribute.
7 years ago
Lioncash
363d692268
yuzu/configure_system: Mark the entropy mask string as nontranslatable
There's no need for translators to concern themselves with the
validation mask used by the entry field.
7 years ago
bunnei
b414f371d7
Merge pull request #1684 from lioncash/common
common/string_util: Minor cleanup
7 years ago
bunnei
252f105a95
Merge pull request #1679 from DarkLordZach/deterministic-rng-2
svc: Use proper random entropy generation algorithm
7 years ago
Lioncash
7df52a0e86
nfp: Correct erroneous sizeof expression within GetTagInfo()
The previous expression would copy sizeof(size_t) amount of bytes (8 on
a 64-bit platform) rather than the full 10 bytes comprising the uuid
member.
Given the source and destination types are the same, we can just use an
assignment here instead.
7 years ago
Lioncash
4a2457cc5a
hid/npad: Add missing break in switch statement within Controller_NPad::OnUpdate()
7 years ago
Lioncash
ae386bc209
service: Mark MakeFunctionString with the [[maybe_unused]] attribute.
When yuzu is compiled in release mode this function is unused, however,
when compiled in debug mode, it's used within a LOG_TRACE statement.
This prevents erroneous compilation warnings about an unused function
(that isn't actually totally unused).
7 years ago
bunnei
e111226bd0
Merge pull request #1662 from FreddyFunk/CopySurface-Optimization
gl_rasterizer_cache: CopySurface optimization
7 years ago
bunnei
5e009be286
Merge pull request #1686 from DarkLordZach/move-open-yuzu-folder
qt: Move Open yuzu Folder action from Help to File
7 years ago
bunnei
a01739ecea
Merge pull request #1685 from lioncash/base
video_core/renderer_base: Remove GL include from the renderer base class files
7 years ago
bunnei
af02e0bbbe
Merge pull request #1677 from FreddyFunk/skip-vao-binding-cleanup
engines/maxwell_3d: Minor cleanup
7 years ago
bunnei
f64ae12ada
Merge pull request #1680 from lioncash/mem
kernel/process: Migrate heap-related memory management out of the process class and into the vm manager
7 years ago
bunnei
b6925e31e0
Merge pull request #1682 from lioncash/audio
hle/audren_u: Implement Get/SetRenderingTimeLimit
7 years ago
bunnei
50f697b128
Merge pull request #1683 from lioncash/typo
audio_core/audio_renderer: Fix typo in AuxInfo member name
7 years ago
bunnei
ddb654fe02
Merge pull request #1608 from DarkLordZach/save-data-reader
[ns|fsp_srv]: Implement various functions to boot Checkpoint
7 years ago
Lioncash
35bddb257b
string_util: Remove ArrayToString()
An old function from Dolphin. This is also unused, and pretty inflexible
when it comes to printing out different data types (for example, one
might not want to print out an array of u8s but a different type
instead. Given we use fmt, there's no need to keep this implementation
of the function around.
7 years ago
Lioncash
a6309c3e1c
string_util: Remove TryParse()
This is an unused hold-over from Dolphin that was primarily used to
parse values out of the .ini files. Given we already have libraries that
do this for us, we don't need to keep this around.
7 years ago
Zach Hilman
e407f73240
qt: Move Open yuzu Folder action from Help to File
7 years ago
Lioncash
583e1bd5eb
video_core/renderer_base: Remove GL include from the renderer base class files
Keeps the base class source files implementation-agnostic.
7 years ago
Lioncash
68da3a4d4b
string_util: Remove ThousandSeparate()
This is currently unused and doesn't really provide much value to keep
around either.
7 years ago
Lioncash
bb5a818691
hle/audren_u: Implement Get/SetRenderingTimeLimit
These appear to be a basic getter and setter pair, so these are fairly
trivial to implement and get out of the way.
7 years ago
Lioncash
83ebfabca8
audio_core/audio_renderer: Fix typo in AuxInfo member name
7 years ago
Lioncash
a61ed2279c
vm_manager: Unstub GetTotalHeapUsage()
Now that we've moved all of the heap-related stuff to the VMManager
class, we can unstub this function, as the necessary members are visible
now.
7 years ago
Lioncash
1de14301c3
kernel/process: Migrate heap-related memory management out of the process class and into the vm manager
Avoids a breach of responsibilities in the interface and keeps the
direct code for memory management within the VMManager class.
7 years ago
Zach Hilman
deb5d6be60
svc: Use proper random entropy generation algorithm
7 years ago
Frederic L
56a27afdea
gl_rasterizer: Minor cleanup
Minor code cleanup from unaddressed feedback in #1654
7 years ago
bunnei
29af456174
Merge pull request #1628 from greggameplayer/Texture2DArray
Implement SurfaceTarget Texture2DArray
7 years ago
bunnei
51f2746356
Merge pull request #1670 from DarkLordZach/deterministic-rng
csrng: Add config option to set RNG seed
7 years ago
bunnei
9d804d7c77
Merge pull request #1665 from ogniK5377/GetClockSnapshot
Implement GetClockSnapshot, ToPosixTime & ToPosixTimeWithMyRule
7 years ago
Zach Hilman
4c0e453e08
svc: Return random seed for svcGetInfo RandomEntropy
7 years ago
greggameplayer
ec188ec832
Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB ( #1666 )
* Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB
( needed by Mario+Rabbids Kingdom Battle )
* Small placement correction
7 years ago
bunnei
f5d26af04d
Merge pull request #1650 from FreddyFunk/cast
yuzu/main: Fix compiler warning
7 years ago
James Rowe
5e102cb6b3
Merge pull request #1674 from FearlessTobi/fullscreen-fix
yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug
7 years ago
Tobias
3617f49a9e
yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug
7 years ago
Zach Hilman
6af690c2b8
settings: Add config option to set RNG seed
7 years ago
Zach Hilman
cc1e6ccb3d
csrng: Use std::mt19937 engine for random number generation
7 years ago
bunnei
3632616bdc
Merge pull request #1660 from Tinob/master
Map more missing opengl states
7 years ago
bunnei
ef2f9e1da6
Merge pull request #1652 from FreddyFunk/static-cast
configure_system: Fix compiler warning
7 years ago
bunnei
847793a3a5
Merge pull request #1664 from FreddyFunk/cast2
gl_rasterizer: Fix compiler warnings
7 years ago
Rodolfo Bogado
2cd792b3cf
Use core extensions when available to set max anisotropic filtering level
7 years ago
Rodolfo Bogado
32412d2a33
Improve state management by splitting some of the states id separated function to avoid a full apply overhead
7 years ago