bunnei
8d4458ef24
Merge pull request #8849 from Morph1984/parallel-astc
...
astc: Enable parallel CPU astc decoding
2 years ago
bunnei
3a5f9409c8
Merge pull request #8915 from vonchenplus/opus_multi_stream
...
core: implement HwOpus GetWorkBufferSizeForMultiStreamEx
2 years ago
bunnei
7172339c7a
Merge pull request #8827 from german77/amiibo_release
...
core: nfp: Implement amiibo encryption
2 years ago
bunnei
9c32f29af1
Merge pull request #8650 from Kelebek1/vsync
...
[Coretiming/NVNFlinger] Improve multi-core vsync timing, and core timing accuracy
2 years ago
bunnei
4a7a771340
Merge pull request #8914 from lioncash/audio-const
...
audio_core: Mark several member functions as const
2 years ago
bunnei
eb726677b2
Merge pull request #8916 from Docteh/muilti_build
...
GIT: Modify .gitignore to ignore wildcard for build directories
2 years ago
bunnei
92813f01a4
Merge pull request #8906 from Docteh/fix_icons
...
UI: move icons from default into colorful theme.
2 years ago
Kyle K
49870baea4
GIT: Modify .gitignore to ignore wildcard for build directories
...
Helps if you have multiple build folders. There are other, dark ways to
hide extra build folders from git, but this is better.
See: https://github.com/citra-emu/citra/pull/6130
2 years ago
Morph
344006b856
Merge pull request #8869 from SachinVin/cmake
...
core/CMakeLists.txt: Remove duplicate files.
2 years ago
Morph
8dafe15600
Merge pull request #8649 from lat9nq/common-position-independent
...
common: Use PROJECT_SOURCE_DIR to find CMakeModules
2 years ago
Morph
44ccec7846
Merge pull request #8682 from lat9nq/dumpy
...
yuzu qt: Add option to create Windows crash dumps
2 years ago
Morph
882dfa36ae
Merge pull request #6667 from lat9nq/ea-appimage
...
ci,linux: Support Patreon releases
2 years ago
FengChen
672e61d802
core: implement HwOpus GetWorkBufferSizeForMultiStreamEx
2 years ago
Morph
60aa942210
Merge pull request #8911 from lioncash/cexpr-string
...
audio_device: Make AudioDeviceName constructor constexpr
2 years ago
Morph
809126c94a
astc: Enable parallel CPU astc decoding
...
Given the issues with GPU accelerated ASTC decoding with NVIDIA's latest drivers, parallelize astc decoding on the CPU.
Uses half the available threads in the system for astc decoding.
2 years ago
Lioncash
7e3cdfc453
audio_renderer: Pass command buffer by const reference
...
This is just being copied and isn't modified at all.
2 years ago
Lioncash
d5d6322640
sink_stream: Mark GetQueueSize as const
2 years ago
Lioncash
6b1cb73350
node_states: Mark relevant member functions as const
2 years ago
Lioncash
e4bc7b8611
i3dl2/reverb: Mark relevant member functions as const
...
These two don't modify member state.
2 years ago
Lioncash
b2c2138af7
behavior_info: Mark CopyErrorInfo as const
...
This doesn't modify member state.
We can also mark the parameter of AppendError as const as well, since it
isn't modified.
2 years ago
Lioncash
b862d5d8d8
audio_device: Mark GetDeviceVolume as const
...
This doesn't modify instance state.
2 years ago
Lioncash
36c77761cf
audio_render_manager: Mark several functions as const
2 years ago
Lioncash
7a5d235d94
audio_in: Mark several functions as const
...
These functions don't modify class state, so we can mark them as such
2 years ago
Lioncash
d1f3c121a0
audio_out: Mark several functions as const
...
These don't affect class state, so we can mark them as such.
2 years ago
Lioncash
e9109cb5f2
audio_buffers: Pass by const-ref in AppendBuffers
...
This function doesn't modify the passed in buffer, so we can make that
explicit.
2 years ago
Lioncash
cb2a33babc
device_session: Convert for loop into ranged for in AppendBuffers
...
Simplifies the indexing code a little bit.
2 years ago
Lioncash
a278fa6e2a
device_session: Pass arguments by const-ref in relevant functions
...
These functions don't modify the passed in audio buffers, so we can
signify that in the interface.
2 years ago
Kyle Kienapfel
9554c67809
UI: move icons from default into colorful theme.
...
colorful theme has been default theme for awhile. having colorful theme
try and grab icons from other theme doesn't work on Linux.
Also adding two additional icons, info is to hint to the user that they
should hit verify after pasting in a token, sync is to show that the
verification is occurring.
2 years ago
bunnei
e85bda5f31
Merge pull request #8878 from Kelebek1/remove_pause
...
Remove pause callbacks from coretiming
2 years ago
bunnei
b5a06bc419
Merge pull request #8902 from Morph1984/new_sd_icons
...
qt_themes: Update sd card icon
2 years ago
liamwhite
b06ef5d530
Merge pull request #8901 from lioncash/docs
...
audio_core: Amend documentation comment tags
2 years ago
Narr the Reg
0a63d43ad6
Merge pull request #8909 from Docteh/taslinky
...
UI: Fix link to TAS help page
2 years ago
Lioncash
2c91fbf7f1
audio_core: Amend documentation tags
...
Resolves a wackload of -Wdocumentation warnings due to mismatching tags
and whatnot.
2 years ago
Mai
463cc9559f
Merge pull request #8904 from liushuyu/fix-xbyak-linkage
...
common: do not link to xbyak on non-amd64 architectures
2 years ago
Lioncash
d55046c5e9
audio_device: Mark member functions as const where applicable
...
These member functions don't modify any internal state.
2 years ago
Lioncash
1c7dae966d
audio_device: Make AudioDeviceName constructor constexpr
...
These are used as read-only arrays, so we can make the data read-only
and available at compile-time.
Now constructing an AudioDevice no longer needs to initialize some
tables
2 years ago
Kyle Kienapfel
fbbedb032c
UI: Fix link to TAS help page
...
Tools -> TAS -> Configure TAS
Thanks to Rei on discord for the fix.
Basically: openExternalLinks is a checkbox in Qt Creator
2 years ago
Narr the Reg
eeb0ec67c3
Merge pull request #8900 from lioncash/cast-qual
...
compressor: Remove unneeded casts in ApplyCompressorEffect
2 years ago
liushuyu
7fda6de5cb
common: do not link to xbyak on non-amd64 architectures
2 years ago
Lioncash
f08046f4d7
compressor: Simplify memset in InitializeCompressorEffect
...
Provides equivalent behavior while being significantly smaller.
2 years ago
Lioncash
fd876f200f
compressor: Mark params parameters as const
...
These functions don't modify the parameters.
2 years ago
Lioncash
bdb866af1d
compressor: Remove unneeded casts in ApplyCompressorEffect
...
Same behavior, but also silences a -Wcast-qual warning, since the second
cast casts away const.
2 years ago
Kelebek1
e93e898df5
Remove pause callbacks from coretiming
2 years ago
Mai
1be456db83
Merge pull request #8880 from german77/slow-moving
...
input_common: Increase mapping timer from 2.5 seconds to 4 seconds
2 years ago
Morph
56be24d50a
qt_themes: Add colorful and dark mode sd card icons
2 years ago
Dev-draco
949917babc
qt_themes: Update sd card icon
2 years ago
Mai
4b07596b83
Merge pull request #8891 from Kelebek1/pragma
...
Remove a pragma once from a cpp file
2 years ago
Kelebek1
1deecc6f70
Remove a pragma once from a cpp file
2 years ago
german77
5d907d9acd
input_common: Increase mapping timer from 2.5 seconds to 4 seconds
2 years ago
bunnei
cd4b9bffb2
Merge pull request #8842 from Kelebek1/AudOut
...
[audio_core] Rework audio output
2 years ago