Morph
e54e7d322e
maxwell_to_vk: Add format B8G8R8A8_SRGB
Add format B8G8R8A8_SRGB and add Attachable capability for B8G8R8A8_UNORM
Used by Bravely Default II
6 years ago
David Marcec
97c023e3f0
nv_flinger: Use enum for pixel format instead of u32
6 years ago
David Marcec
67d7c0f45e
DmaPusher: Remove dead code in step
6 years ago
ReinUsesLisp
635a3add8b
vk_rasterizer: Match OpenGL's FlushAndInvalidate behavior
Match OpenGL's behavior. This can fix or simplify bisecting issues on
Vulkan.
6 years ago
Morph
eedbf90664
frontend: Set minimum window size to 640x360 instead of 1280x720 ( #3413 )
6 years ago
bunnei
053399a553
time_zone: Use std::chrono::seconds for strong typing.
6 years ago
James Rowe
99f5c3ca7f
Frontend: Remove tracking for context wrapper
6 years ago
bunnei
f42b9c0a85
hle: service: time_zone_manager: Use current time zone setting.
6 years ago
bunnei
7aadcb796c
common: Add module to get the current time zone.
6 years ago
bunnei
8588ac0645
core: settings: Add a setting for time zone.
6 years ago
David Marcec
9f8eb0c39a
fix logic error & scale sample volume based on voice volume
6 years ago
David Marcec
7965018e64
pass by const ref instead
6 years ago
David Marcec
de00a5eb8c
audio_renderer: Better voice mixing and 6 channel downmixing
Supersedes #3738 and #3321
6 years ago
bunnei
ee3b9071b5
service: fsp_srv: Stub implementation of OpenMultiCommitManager.
6 years ago
bunnei
3439618956
yuzu: game_list: Fix 'Open Save Data Location' for device saves.
6 years ago
bunnei
97e2eb439c
file_sys: savefata_factory: Update to support DeviceSaveData.
6 years ago
bunnei
f870a935d4
file_sys: control_metadata: Expose device_save_data_size.
6 years ago
David Marcec
26bd4978a3
Stub SendKeyboardLockKeyEvent
Needed for Puchikon 4 SmileBASIC 1.0.0
6 years ago
ReinUsesLisp
f39591b20a
gl_shader_decompiler: Properly emulate NaN behaviour on NE
"Not equal" operators on GLSL seem to behave as unordered when we expect
an ordered comparison.
Manually emulate this checking for LGE values (numbers, not-NaNs).
6 years ago
ReinUsesLisp
d8598a8717
shader_ir: Separate float-point comparisons in ordered and unordered
This allows us to use native SPIR-V instructions without having to
manually check for NAN.
6 years ago
James Rowe
2991e7441a
Replace externals with Conan ( #3735 )
* Remove git submodules that will be loaded through conan
* Move custom Find modules to their own folder
* Use conan for downloading missing external dependencies
* CI: Change the yuzu source folder user to the user that the containers run on
* Attempt to remove dirty mingw build hack
* Install conan on the msvc build
* Only set release build type when using not using multi config generator
* Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries
* Add workaround for submodules that use legacy CMAKE variables
* Re-add USE_BUNDLED_QT on the msvc build bot
6 years ago
FearlessTobi
32bb64a0ec
Menubar: fix mouse tracking bug
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
6 years ago
bunnei
97607e0675
Update src/video_core/gpu.cpp
Co-authored-by: David <25727384+ogniK5377@users.noreply.github.com>
6 years ago
bunnei
58b467877c
Update src/video_core/gpu.cpp
Co-authored-by: David <25727384+ogniK5377@users.noreply.github.com>
6 years ago
ReinUsesLisp
aa86309d15
vk_sampler_cache: Use VK_EXT_custom_border_color when available
This should fix grass interactions on Breath of the Wild on Vulkan.
It is currently untested against validation layers.
Nvidia's Windows 443.09 beta driver or Linux 440.66.12 is required for
now.
6 years ago
ReinUsesLisp
1f5d41ac05
vk_graphics_pipeline: Implement viewport swizzles with NV_viewport_swizzle
6 years ago
ReinUsesLisp
9054f86f03
gl_rasterizer: Implement viewport swizzles with NV_viewport_swizzle
6 years ago
ReinUsesLisp
ff7b0d7329
maxwell_3d: Add viewport swizzles
6 years ago
Lioncash
12b81f2581
kernel/memory: Remove #pragma once within cpp file
This isn't necessary in a cpp file and will cause warnings on clang.
6 years ago
Lioncash
0bf0d27552
kernel/memory: Remove unused includes
Prevents header churn and needing to recompile these files if these
headers are ever changed in the future.
6 years ago
Lioncash
0bb99454ed
kernel/memory: Remove unused variables in memory_block_manager
Prevents unused variable warnings.
6 years ago
Lioncash
42d43335c9
kernel/memory: Make use of std::array consistently in address_space_info
This allows tuning standard library implementations to enable or disable
range checks at runtime, which is nicer for debugging.
6 years ago
Lioncash
e09098b981
kernel/memory: Resolve -Wshadow warnings
Prevents variable name clashing.
6 years ago
Lioncash
a93929b23a
kernel/memory: Amend potential encoding warnings
While èis generally representable in some language encodings, in some
it isn't and will result in compilation warnings occurring. To remain
friendly with other language's codepages on Windows, we normalize it to
an ASCII e.
6 years ago
Lioncash
ccfac6d992
hle_ipc: Eliminate core memory globals
We can just pass the required instances into the constructor of the
request, eliminating all usages of the global system accessor.
6 years ago
Morph
970c8f1ccc
settings: Add anisotropic filtering level to the yuzu configuration log ( #3875 )
6 years ago
bunnei
6173ba77f8
Update src/core/hle/service/am/am.cpp
Co-authored-by: Mat M. <mathew1800@gmail.com>
6 years ago
FearlessTobi
358d645018
input_common: fix build when SDL2 is disabled
6 years ago
Lioncash
918b439e26
readable_event: Remove unnecessary semicolon in Signal()
Resolves a -Wextra-semi warning.
While we're at it, we can invert the branch to form a guard clause,
unindenting all of the contained code.
6 years ago
ReinUsesLisp
02e6cc9247
vk_graphics_pipeline: Implement rasterizer_enable on Vulkan
We can simply enable rasterizer discard matching the current pipeline
key.
6 years ago
Jan Beich
1d30ce7b5b
fixed_pipeline_state: explicitly use template keyword after be8742e286
In file included from src/video_core/renderer_opengl/renderer_opengl.cpp:25:
In file included from src/./video_core/renderer_opengl/gl_rasterizer.h:26:
In file included from src/./video_core/renderer_opengl/gl_fence_manager.h:11:
src/./video_core/fence_manager.h:91:32: error: use 'template' keyword
to treat 'Write' as a dependent template name
memory_manager.Write<u32>(current_fence->GetAddress(), current_fence->GetPayload());
^
template
src/./video_core/fence_manager.h:137:32: error: use 'template'
keyword to treat 'Write' as a dependent template name
memory_manager.Write<u32>(current_fence->GetAddress(), current_fence->GetPayload());
^
template
6 years ago
David Marcec
1d2ebbf8fe
nvdrv: Fix GetGpuTime stack corruption
IoctlGetGpuTime should be 16 bytes, not 8.
6 years ago
David Marcec
e433e24ed4
am: IHomeMenuFunctions:GetPopFromGeneralChannelEvent
QLaunch 1.0.0
6 years ago
Dan
712c96db1a
maxwell_to_vk: implement missing signed int formats
6 years ago
Jason Parker
9cdcfd80fc
caps:su Stub out SetShimLibraryVersion
Used by Animal Crossing: New Horizons when trying to take a picture.
6 years ago
Morph
6665cd04f1
texture: Implement R8G8UI
- Used by The Walking Dead: The Final Season
6 years ago
David Marcec
053fabf414
fs-srv: GetFreeSpaceSize & GetTotalSpaceSize
Closes #3533
Turns out the functions were already implemented but just never added
6 years ago
David Marcec
9acd88ff71
nim: CreateServerInterface, CreateAccessorInterface, CreateAsyncInterface
Closes #3026
6 years ago
David Marcec
66f74349f0
caps: Add missing service names to caps:su
SetShimLibraryVersion, SaveScreenShotEx1 & SaveScreenShotEx2 were missing
6 years ago
David Marcec
5da10e6ec0
am: GetFriendInvitationStorageChannelEvent
Closes #3829
6 years ago