- Oct 27, 2020
-
-
Lioncash authored
-
Lioncash authored
Prevents a few unnecessary inclusions.
-
ameerj authored
This commit aims to implement the NVDEC (Nvidia Decoder) functionality, with video frame decoding being handled by the FFmpeg library. The process begins with Ioctl commands being sent to the NVDEC and VIC (Video Image Composer) emulated devices. These allocate the necessary GPU buffers for the frame data, along with providing information on the incoming video data. A Submit command then signals the GPU to process and decode the frame data. To decode the frame, the respective codec's header must be manually composed from the information provided by NVDEC, then sent with the raw frame data to the ffmpeg library. Currently, H264 and VP9 are supported, with VP9 having some minor artifacting issues related mainly to the reference frame composition in its uncompressed header. Async GPU is not properly implemented at the moment. Co-Authored-By:
David <25727384+ogniK5377@users.noreply.github.com>
-
Lioncash authored
Prevents unnecessary copies and heap reallocations from occurring.
-
- Oct 26, 2020
- Oct 25, 2020
- Oct 22, 2020
- Oct 21, 2020
-
-
Morph authored
It turns out that after a controller is disconnected, there is a chance that events from the previous controller are sent/processed after it has been disconnected. This causes the previously disconnected controller to reappear as connected due to GetSDLJoystickBySDLID() emplacing this controller back to the map. Fix this by only returning an SDLJoystick if and only if it exists in the map.
-
Lioncash authored
Resolves the clang build issue in a more unintrusive way.
-
bunnei authored
-
Lioncash authored
These compiler flags aren't shared with clang, so specifying these flags unconditionally can lead to a bit of warning spam. While we're in the area, we can also enable -Wunused-but-set-parameter given this is almost always a bug.
-
Lioncash authored
This slipped through the cracks due to another change being merged before the compiler flag changes.
-
- Oct 20, 2020
-
-
Morph authored
Fix them for real this time, now they finally work.
-
ReinUsesLisp authored
This emulates the behavior we get on GLSL with regular SSBOs with a pointer + length pair. It aims to be consistent with the crashes we might get. Out of bounds stores are ignored. Atomics are ignored and return zero. Reads return zero.
-
David Marcec authored
-
David Marcec authored
Fixes crash for Catherine Full Body
-
- Oct 18, 2020
-
-
Lioncash authored
Same behavior, minus a script variable.
-
- Oct 17, 2020
-
-
Lioncash authored
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
-
Lioncash authored
Previously, the lower bound wasn't being used and zero was being used as the lower bound every time this function was called. This affects the outcome of some of the randomized entries a little bit, for example, the lower-bound for beard and mustache flags was supposed to be 1, not 0. Aside from these cases, the bug didn't affect anything else.
-
bunnei authored
- Fixes a crash when BCAT service is offline.
-
- Oct 16, 2020
-
-
Lioncash authored
Same behavior, but makes the callback list nicer to look at.
-
Lioncash authored
Avoids redundant copies.
-
Morph authored
Previously, disconnecting a controller still leaves a null SDLJoystick entry within the vector of SDLJoysticks mapped by GUID. When a DirectInput device of the same GUID is reconnected, it adds that device to a new port causing non-detectable input. Furthermore, opening the "Configure" menu would cause yuzu to crash since it first tries to resolve the name of a null SDLJoystick entry that was not removed. Resolve this by properly erasing the SDLJoystick entry from the vector.
-
- Oct 15, 2020
- Oct 14, 2020
-
-
bunnei authored
- This is used by Super Mario 3D All-Stars.
-
- Oct 13, 2020
-
-
ReinUsesLisp authored
Locks on GetCurrentHostThreadID were causing performance issues according to Visual Studio's profiler. It was consuming twice the time as arm_interface.Run(). The cost was not in the function itself but in the lockinig it required. Reimplement these functions using atomics and static storage instead of an unordered_map. This is a side effect to avoid locking and using linked lists for reads. Replace unordered_map with a linear search.
-
Lioncash authored
Normalizes the warnings shared between audio_core and core.
-
Lioncash authored
Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
-
ReinUsesLisp authored
Vulkan has requirements for primitive topologies that don't play nicely with yuzu's. Since it's only 4 bits, we can move it to fixed state without changing the size of the pipeline key. - Fixes a regression on recent Nvidia drivers on Fire Emblem: Three Houses.
-
Morph authored
Add a check if dir is nullptr (does not exist) Fixes save game creation in Hades
-
bunnei authored
- This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
-
bunnei authored
- This is used by Super Mario 3D All-Stars.
-
- Oct 09, 2020
-
-
ReinUsesLisp authored
-
goldenx86 authored
RDNA devices seem to crash when using VK_EXT_extended_dynamic_state in the latest 20.9.2 proprietary Windows drivers. As a workaround, for now we block device names corresponding to current RDNA released products.
-
- Oct 08, 2020
-
-
ReinUsesLisp authored
TMML takes an array argument that has no known meaning, this one appears as the first component in gpr8 followed by s, t and r. Skip this component when arrays are being used. Also implement CUBE texture types. - Used by Pikmin 3: Deluxe Demo.
-