| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
| |\
| |
| | |
controller: Convert led_patterns integer literals to bool literals
|
| | |
| |
| |
| |
| | |
'bool' isn't always guaranteed to be the same size as an int, so this
can technically cause truncation warnings if we support other platforms.
|
| |\ \
| | |
| | | |
general: Use template deduction guides for lock_guard
|
| | |/
| |
| |
| | |
Same behavior, less code.
|
| | |
| |
| |
| | |
Resolves a warning where not all control paths return a value.
|
| |\ \
| | |
| | | |
main/profile_select: Don't ask for profile when there's only one.
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
sdl_impl: Fix controller reconnection issues
|
| | |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| |\ \ \
| | | |
| | | | |
video_core: Fix instances where msbuild always regenerated host shaders
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When HEADER_GENERATOR was included in the DEPENDS section of custom
commands, msbuild assumed this was always modified. Changing this file
is not common so we can remove it from there.
|
| |\ \ \ \
| |_|_|/
|/| | | |
service: time: Update current time with changes to RTC setting.
|
| | | | |
| | | |
| | | |
| | | | |
- This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
|
| | |_|/
|/| |
| | |
| | | |
Should finally resolve building with clang.
|
| |\ \ \
| | | |
| | | | |
video_core: Conditially activate relevant compiler warnings
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | | |
| | | |
| | | |
| | | | |
Resolves the clang build issue in a more unintrusive way.
|
| |/ / / |
|
| | | |
| | |
| | |
| | |
| | | |
This slipped through the cracks due to another change being merged
before the compiler flag changes.
|
| |\ \ \
| | | |
| | | | |
gl_arb_decompiler: Implement robust buffer operations
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| |\ \ \ \
| | | | |
| | | | | |
core: Fix clang build
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Recent changes to the build system that made more warnings be flagged as
errors caused building via clang to break.
Fixes #4795
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
nifm: GetAppletInfo stub
|
| | | | | | | |
|
| | | |/ / /
| |/| | |
| | | | |
| | | | | |
Fixes crash for Catherine Full Body
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
configure_input_player: Fix modifier buttons
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fix them for real this time, now they finally work.
|
| |\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
sdl_impl: Erase the SDLJoystick entry after removing a controller
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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.
|
| |\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
kernel: Implement host thread register methods without locking
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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.
|
| |\ \ \ \ \ \
| | | | | | |
| | | | | | | |
filesystem: Fix CreateDirectory and DeleteFile
|
| | |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add a check if dir is nullptr (does not exist)
Fixes save game creation in Hades
|
| |\ \ \ \ \ \
| | | | | | |
| | | | | | | |
renderer_vulkan: Create and properly use Vulkan 1.0 instances when 1.1 is not available
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Enable the required capabilities to use Vulkan 1.0 without validation
errors and disable those that are not compatible with it.
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This commit doesn't make yuzu compatible with Vulkan 1.0 yet, it only
creates an 1.0 instance.
|
| |\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core: Add boxcat sources with target_sources
|
| | | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Same behavior, minus a script variable.
|
| |\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
hle: service: nvdrv: Implement nvhost_as_gpu::FreeSpace.
|
| | | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | | |
- This is used by Super Mario 3D All-Stars.
|
| |\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
mii/manager: Make use of unused lower bound in GetRandomValue()
|
| | | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
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.
|
| |\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
vk_graphics_pipeline: Manage primitive topology as fixed state
|
| | | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
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.
|
| |\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service: bcat: Check client connection before interacting with socket.
|
| | | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
- Fixes a crash when BCAT service is offline.
|
| | | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Same behavior, but makes the callback list nicer to look at.
|
| |/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
Avoids redundant copies.
|