bunnei
f92bedb450
Merge pull request #8874 from vonchenplus/align_index_buffer_size
Align index buffe size when vertex_buffer_unified_memory enable
3 years ago
bunnei
876c151093
Migrate deploy-linux.sh from lat9nq's repo.
3 years ago
Zwip-Zwap Zapony
2eb08dac0f
Fix "controller.colors_state.right" being "left"
3 years ago
Mai
ba07cb942b
Merge pull request #9004 from zhaobot/tx-update-20221001041028
Update translations (2022-10-01)
3 years ago
Liam
52a802abdd
macro_jit_x64: cancel exit for taken branch
3 years ago
The yuzu Community
ff50939299
Update translations (2022-10-01)
3 years ago
bunnei
48430f14cb
Merge pull request #8910 from vonchenplus/astc_decode_error
video_core: Modify astc texture decode error fill value
3 years ago
bunnei
4df48d6b35
Merge pull request #8934 from german77/palma_release
service: hid: Partially implement palma controller
3 years ago
Morph
24d1376ea2
Merge pull request #8993 from lat9nq/drop-linuxdeploy
ci/linux: Drop linuxdeploy usage
3 years ago
bunnei
8fa025730a
Merge pull request #8940 from german77/silence
yuzu: Silence some clang warnings
3 years ago
Morph
c8aee425eb
Merge pull request #8989 from merryhime/loader-nullptr
core/loader: Return nullptr if file is nullptr
3 years ago
lat9nq
e6258b3ea5
ci/linux: Drop linuxdeploy usage
Recent versions of Docker appear to cause the Qt linuxdeploy plugin to
throw a boost file copy error.
This switches from linuxdeploy to a script of mine I've been working on
for a while.
3 years ago
Morph
55fef19014
service: vi: Retrieve vsync event once per display
The display vsync event can only be retrieved once per display. Returns VI::ResultPermissionDenied if we attempt to retrieve the vsync event for the same display.
Prevents games such as .hack//G.U. Last Recode from consuming all the handles in the handle table by spamming vsync event retrievals and allows it to go in game.
3 years ago
Morph
23c1bf736f
service: vi: Move VI results into its own file
3 years ago
Merry
62b91b0094
core/loader: Return nullptr if file is nullptr
3 years ago
Liam
08f063e6a4
vulkan: automatically use larger staging buffer sizes when possible
3 years ago
bunnei
a8091a7823
Merge pull request #8920 from abouvier/cmake-git
cmake: fix git detection
3 years ago
Narr the Reg
adb6348255
service: hid: Partially implement palma controller
4 years ago
bunnei
f0003d06f1
Merge pull request #8941 from Kelebek1/single_core_sucks
Do not try to pause core timing from the audio thread when using single-core
3 years ago
Morph
cf67c58c1a
Merge pull request #8945 from Tachi107/typos
chore: fix some typos
3 years ago
Morph
2e3839ae71
Merge pull request #8948 from german77/order
yuzu: sort input profiles by name
3 years ago
Morph
be605a37b6
Merge pull request #8933 from lat9nq/ci-use-apprun-sh
ci/linux: Use AppRun.sh to start AppImage
3 years ago
Morph
778035ccf1
Merge pull request #8930 from lat9nq/disable-vulkan-check
yuzu qt: Add option to disable startup Vulkan check
3 years ago
Narr the Reg
7241fc17ae
yuzu: sort input profiles by name
3 years ago
Morph
2f957dba1e
Merge pull request #8943 from lioncash/netiface
sockets: Make fd member variable protected
3 years ago
Morph
46051dfa8e
Merge pull request #8939 from lioncash/render
audio_renderer: Make GetCommandBuffer() take a u32
3 years ago
Morph
fffb1ece90
Merge pull request #8938 from lioncash/manager
audio_manager: Minor cleanup related changes
3 years ago
Andrea Pappacoda
b1585fed5a
chore: fix some typos
Fix some typos reported by Lintian
3 years ago
Andrea Pappacoda
c7832866b3
build(room): simplify yuzu-room installation
CMake is able to automatically install binaries in the correct location. Also see my older patch, 6f16891f43
Cc: @FearlessTobi
3 years ago
Lioncash
a260c09deb
sockets: Make fd member variable protected
Other things shouldn't be able to directly mess around with the
descriptor
3 years ago
Kelebek1
c8f8b9e076
Do not try to pause core timing from the audio thread when using single-core
3 years ago
Narr the Reg
ca0d1fd4f1
yuzu: Silence some clang warnings
3 years ago
Lioncash
17a8113847
audio_renderer: Make GetCommandBuffer() take a u32
This function is only ever called with unsigned types, and all of the
other interface functions take session_id as a u32, so this makes the
class a little more consistent.
3 years ago
Lioncash
b224cf3809
audio_manager: Forward declare result type
Moves the include into the cpp file to lessen header dependencies.
3 years ago
Lioncash
bf679951d1
audio_manager: Remove redundant cast in ThreadFunc()
We can just use a local here to get rid of a second cast.
3 years ago
Lioncash
d268f6fc9e
audio_manager: move std::functions in SetOutManager/SetInManager
Prevents unnecessary reallocations in the event the captured variables
are larger than the internal std::function buffer.
3 years ago
Lioncash
6ac5fbc81b
audio_manager: Remove unused forward declarations
Allows us to get rid of some unnecessary forward declarations and
includes.
3 years ago
Lioncash
d10f7af6cb
audio_manager: Remove unused sessions_started member variable
This isn't used, so it can be removed.
3 years ago
Lioncash
1019e52885
audio_manager: Remove dependence on system state
This isn't used by the class, so this can be removed for the time being.
3 years ago
lat9nq
6d20b9e178
ci/linux: Use AppRun.sh to start AppImage
The current AppRun is more difficult to update. This script still
uses the old version of AppImageKit-checkrt, but now we use the shell
script version so we can set our own environment variables as the
application starts up.
This specific version searches for and sets the correct root CA file to
prevent SSL errors in yuzu.
3 years ago
Alexandre Bouvier
94f6f6ba20
cmake: Fix FindPkgConfig
3 years ago
FearlessTobi
1c14030b31
Address some review comments
3 years ago
bunnei
fa7daaf171
Merge pull request #8849 from Morph1984/parallel-astc
astc: Enable parallel CPU astc decoding
3 years ago
lat9nq
e5392df1a5
yuzu qt: Add option to disable startup Vulkan check
The startup check apparently confuses other programs when yuzu launches
2 processes and then quickly closes one of them. Though this isn't
really our issues it's also not a big deal for me to add an option to
work around that issue.
3 years ago
bunnei
f39b70a21b
Merge pull request #8915 from vonchenplus/opus_multi_stream
core: implement HwOpus GetWorkBufferSizeForMultiStreamEx
3 years ago
Alexandre Bouvier
8a1d99e72d
cmake: fix git detection
3 years ago
bunnei
c5d72b926d
Merge pull request #8827 from german77/amiibo_release
core: nfp: Implement amiibo encryption
3 years ago
bunnei
58975829b7
Merge pull request #8650 from Kelebek1/vsync
[Coretiming/NVNFlinger] Improve multi-core vsync timing, and core timing accuracy
3 years ago
bunnei
bc648de552
Merge pull request #8914 from lioncash/audio-const
audio_core: Mark several member functions as const
3 years ago
bunnei
30148fc946
Merge pull request #8916 from Docteh/muilti_build
GIT: Modify .gitignore to ignore wildcard for build directories
3 years ago