Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-23 | yuzu: Add webcam support and rebase to latest master | Narr the Reg | |
2022-07-23 | input_common: Add camera driver | german77 | |
2022-07-23 | Merge pull request #8545 from Kelebek1/Audio | liamwhite | |
Project Andio | |||
2022-07-22 | ci,CMake: Drop Conan support for vcpkg | lat9nq | |
Between packages breaking, Conan always being a moving target for minimum required CMake support, and now their moves to Conan 2.0 causing existing packages to break, I suppose this was a long time coming. vcpkg isn't without its drawbacks, but at the moment it seems easier on the project to use for external packages. Mostly removes the logic for Conan from the root CMakeLists file, leaving basic find_package()'s in its place. Sets only the find_package()'s that require CONFIG mode as necessary. clang and linux CI now use the vcpkg toolchain file configured in the Docker container when possible. mingw CI turns off YUZU_TESTS because there's no way on the container to run Windows executables on a Linux host anyway, and it's not easy to get Catch2 there. | |||
2022-07-22 | Project Andio | Kelebek1 | |
2022-07-17 | Merge pull request #8508 from yuzu-emu/mc-speed-limit | bunnei | |
hle: service: nvflinger: Factor speed limit into frame time calculation. | |||
2022-07-16 | Merge pull request #8543 from BreadFish64/use_tsc_from_caps | bunnei | |
common/x64: Use TSC clock rate from CPUID when available | |||
2022-07-16 | yuzu: settings: Remove framerate cap and merge unlocked framerate setting. | bunnei | |
- These were all somewhat redundant. | |||
2022-07-16 | Merge pull request #8593 from merryhime/ranged-setting-T | bunnei | |
common/setting: Make ranged a property of the type | |||
2022-07-16 | Merge pull request #8511 from german77/hbmenu | bunnei | |
service: ptm: Add TS, nifm: Stub GetInternetConnectionStatus | |||
2022-07-15 | Merge pull request #8560 from liamwhite/bitfield-may-alias | bunnei | |
common: fix bitfield aliasing on GCC/Clang | |||
2022-07-15 | common/setting: Make ranged a property of the type | merry | |
- Avoids new GCC 12 warnings when Type is of form std::optional<T> - Makes more sense this way, because ranged is not a property which would change over time | |||
2022-07-15 | common_funcs: Mark padding as [[maybe_unused]] | Merry | |
2022-07-09 | common: fix bitfield aliasing on GCC/Clang | Liam | |
2022-07-07 | Merge pull request #8522 from lat9nq/consolidate-settings | Morph | |
settings: Consolidate RangedSetting's with regular ones | |||
2022-07-06 | guard against div-by-zero | Marshall Mohror | |
2022-07-06 | common/x64: Use TSC clock rate from CPUID when available | Marshall Mohror | |
The current method used to estimate the TSC is fairly accurate - within a few kHz - but the exact value can be extracted from CPUID if available. | |||
2022-07-02 | common/fiber: make fibers easier to use | Liam | |
2022-06-30 | settings: Consolidate RangedSetting's with regular ones | lat9nq | |
The latest git version of GCC has issues with my diamond inheritance shenanigans. Since that's now two compilers that don't like it I thought it'd be best to just axe all of it and just have the two templates like before. This rolls the features of BasicRangedSetting into BasicSetting, and likewise RangedSetting into Setting. It also renames them from BasicSetting and Setting to Setting and SwitchableSetting respectively. Now longer name corresponds to more complex thing. | |||
2022-06-30 | Adress Feedback. | Fernando Sahmkow | |
2022-06-28 | service: ptm: Rewrite PSM and add TS | german77 | |
2022-06-28 | Native clock: Use atomic ops as before. | Fernando Sahmkow | |
2022-06-28 | Native Clock: remove inaccuracy mask. | Fernando Sahmkow | |
2022-06-28 | Core: Fix tests. | Fernando Sahmkow | |
2022-06-28 | Core/Common: Corrections to core timing and add critical priority. | Fernando Sahmkow | |
2022-06-28 | Common: improve native clock. | Fernando Sahmkow | |
2022-06-21 | Merge pull request #8432 from liamwhite/watchpoint | bunnei | |
core/debugger: memory breakpoint support | |||
2022-06-16 | Merge pull request #8472 from german77/tace | Morph | |
common: param_package: Demote DEBUG to TRACE for getters | |||
2022-06-16 | core/debugger: memory breakpoint support | Liam | |
2022-06-16 | common: param_package: Demote DEBUG to TRACE for getters | Narr the Reg | |
2022-06-15 | Merge pull request #8460 from Morph1984/bounded-q | liamwhite | |
bounded_threadsafe_queue: Use constexpr capacity and mask | |||
2022-06-15 | bounded_threadsafe_queue: Use constexpr capacity and mask | Morph | |
While this is the primary change, we also: - Remove the mpsc namespace and rename Queue to MPSCQueue - Make Slot a private struct within MPSCQueue - Remove the AlignedAllocator template argument, as we use std::allocator - Replace instances of mask + 1 with capacity, and mask + 2 with capacity + 1 | |||
2022-06-14 | Merge pull request #8383 from Morph1984/shadow-of-the-past | Mai | |
yuzu: Make variable shadowing a compile-time error | |||
2022-06-13 | common/assert: rework ASSERT handling to avoid std::function usage | Liam | |
2022-06-13 | common/assert: add unlikely | Liam | |
2022-06-13 | common: Don't test ASSERT conditions inline | Liam | |
2022-06-13 | common: Change semantics of UNREACHABLE to unconditionally crash | Liam | |
2022-06-13 | common: Eliminate variable shadowing | Morph | |
GCC/Clang treats variables within lambdas as potentially shadowing those outside the lambda, despite them not being captured inside the lambda's capture list. | |||
2022-06-11 | Merge pull request #8413 from behunin/bounded-queue | bunnei | |
gpu_thread: Move to bounded queue | |||
2022-06-11 | Merge pull request #8393 from lat9nq/default-vulkan | bunnei | |
general: Set renderer_backend's default to Vulkan | |||
2022-06-05 | common: consolidate ELF structure definitions | Liam | |
2022-06-02 | gpu_thread: Move to bounded queue | Levi Behunin | |
2022-06-01 | core/debugger: Implement new GDB stub debugger | Liam | |
2022-05-29 | settings: Set Vulkan to the default renderer backend | lat9nq | |
2022-05-28 | Merge pull request #8374 from german77/asnycvibrations | bunnei | |
input_common: Make vibration request async | |||
2022-05-26 | path_util: Resolve `-Wpointer-bool-conversion` warning | lat9nq | |
Clang (rightfully) warns that we are checking for the existence of pointer to something just allocated on the stack, which is always true. Instead, check whether GetModuleFileNameW failed. Co-authored-by: Mai M <mathew1800@gmail.com> | |||
2022-05-23 | input_common: Make vibration request async | Narr the Reg | |
2022-05-15 | string_util: Add U16StringFromBuffer | lat9nq | |
Qt's QString::toStdU16String doesn't work when compiling against the latest libstdc++, at least when using Clang. This function effectively does the same thing as the aforementioned one. | |||
2022-05-08 | VideoCore: Add option to dump the macros. | Fernando Sahmkow | |
Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com> | |||
2022-04-28 | Merge pull request #8280 from Tachi107/spdx-fixup | Mai M | |
chore: add missing SPDX tags |