Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-30 | host_shaders: Add copyright headers to OpenGL present shaders | ReinUsesLisp | |
2020-12-30 | video_core/host_shaders: Add support for prebuilt SPIR-V shaders | ReinUsesLisp | |
Add support for building SPIR-V shaders from GLSL and generating headers to include the text of those same GLSL shaders to consume from OpenGL. | |||
2020-12-29 | Merge pull request #5247 from comex/xx-concepts | bunnei | |
k_priority_queue: Fix concepts use | |||
2020-12-29 | Merge pull request #5246 from comex/xx-include | bunnei | |
Add missing include of "core/hle/kernel/kernel.h" | |||
2020-12-29 | Merge pull request #5248 from ReinUsesLisp/update-dynarmic | LC | |
externals: Update Dynarmic | |||
2020-12-29 | externals: Update Dynarmic | ReinUsesLisp | |
Keeps yuzu up to date with the latest changes and introduces a change needed for a lock-free optimization our side. | |||
2020-12-29 | k_priority_queue: Fix concepts use | comex | |
- For `std::same_as`, add missing include of `<concepts>`. - For `std::convertible_to`, create a replacement in `common/concepts.h` and use that instead. This would also be found in `<concepts>`, but unlike `std::same_as`, `std::convertible_to` is not yet implemented in libc++, LLVM's STL implementation - not even in master. (In fact, `std::same_as` is the *only* concept currently implemented. For some reason.) | |||
2020-12-29 | Add missing include of "core/hle/kernel/kernel.h" | comex | |
This is needed as the header invokes methods on KernelCore. | |||
2020-12-29 | Merge pull request #5245 from ameerj/sleepthread-log | LC | |
svc: demote SleepThread log to LOG_TRACE | |||
2020-12-29 | svc: demote SleepThread log to LOG_TRACE | ameerj | |
This log is called often, and introduces a lot of noise when debug logging is enabled, making it difficult to see other debug logs. | |||
2020-12-29 | Merge pull request #5236 from gal20/udp_client_patch | bunnei | |
input_common: process udp packets only for the correct pad | |||
2020-12-28 | Merge pull request #5233 from german77/inverted | bunnei | |
InputCommon: Allow to invert analog axis with right click | |||
2020-12-27 | udp client: process packets only for the correct pad | gal20 | |
2020-12-26 | Allow to invert analog axis with right click | german | |
2020-12-25 | Merge pull request #5226 from ReinUsesLisp/c4715-vc | Rodrigo Locatti | |
video_core: Enforce C4715 (not all control paths return a value) | |||
2020-12-25 | Merge pull request #5225 from ReinUsesLisp/always-vulkan | Rodrigo Locatti | |
cmake: Always enable Vulkan | |||
2020-12-24 | core: memory: Ensure thread safe access when pages are rasterizer cached (#5206) | bunnei | |
* core: memory: Ensure thread safe access when pages are rasterizer cached. | |||
2020-12-24 | cmake: Always enable Vulkan | ReinUsesLisp | |
Removes the unnecesary burden of maintaining separate #ifdef paths and allows us sharing generic Vulkan code across APIs. | |||
2020-12-24 | video_core: Enforce C4715 (not all control paths return a value) | ReinUsesLisp | |
Most of the time people write code that always returns a value, terminates execution, throws an exception, or uses an unconventional jump primitive. This is not always true when we build without asserts on mainline builds. To avoid introducing undefined behavior on our most used builds, enforce this warning signalling an error and stopping the build from shipping. | |||
2020-12-24 | vk_shader_decompiler: Silence warning when compiling without asserts | ReinUsesLisp | |
2020-12-23 | Merge pull request #5217 from lat9nq/save-on-boot | bunnei | |
yuzu/main: Save settings when starting guest | |||
2020-12-22 | Merge pull request #5223 from lat9nq/menu-navigation | LC | |
yuzu/main: Improve menubar access keys | |||
2020-12-22 | yuzu/main: Improve menubar access keys | lat9nq | |
Adds a unique access key to each action within each menu. A few actions already had their own access key, so those were untouched. | |||
2020-12-22 | Merge pull request #5178 from german77/dockedresize | bunnei | |
Add option to reset window size to 1080p | |||
2020-12-22 | Add option to reset window size to 1080p | german | |
2020-12-21 | Merge pull request #5042 from Morph1984/project-aether | bunnei | |
Project Aether: Reimplementation of the Web Browser Applet | |||
2020-12-22 | yuzu/main: Save settings when starting guest | lat9nq | |
Saves UISettings and Settings when booting a guest. Moves updating UISettings::values from GMainWindow::closeEvent into its own function, then reuses it in GMainWindow::BootGame. | |||
2020-12-20 | Merge pull request #5131 from bunnei/scheduler-rewrite | bunnei | |
Rewrite Kernel scheduler based on Atmosphere | |||
2020-12-20 | Merge pull request #5201 from ameerj/bufferq-refactor | bunnei | |
vi/buffer_queue: Buffer queue management refactor | |||
2020-12-20 | Merge pull request #5207 from FearlessTobi/remove-gdb-config | bunnei | |
yuzu: Remove gdbstub configuration | |||
2020-12-19 | yuzu: Remove gdbstub configuration | FearlessTobi | |
The gdbstub itself was removed with https://github.com/yuzu-emu/yuzu/pull/5028. This PR just removes the remaining gdb configuration code from the emulator and the UI. | |||
2020-12-18 | applets/web: Implement the online web browser applet | Morph | |
2020-12-18 | applets/web: Fix keyboard to emulated controller input | Morph | |
2020-12-18 | main: Add the ability to disable the web applet | Morph | |
This should only be used for Super Mario 3D All-Stars. This is a temporary solution until it can be implemented properly. | |||
2020-12-18 | main, applets/web: Re-add progress dialog for RomFS extraction | Morph | |
2020-12-18 | applets/web: Implement the Qt web browser applet frontend | Morph | |
2020-12-18 | web_browser_scripts: Add injection scripts for the web browser | Morph | |
2020-12-18 | pl_u, applets/web: Decrypt shared fonts to TTF files | Morph | |
2020-12-18 | ns_vm: Stub NeedsUpdateVulnerability | Morph | |
This is used to force system updates on launching the web browser. We do not care about system updates so this can be set to false. | |||
2020-12-18 | frontend/input_interpreter: Add InputInterpreter API | Morph | |
The InputInterpreter class interfaces with HID to retrieve button press states. Input is intended to be polled every 50ms so that a button is considered to be held down after 400ms has elapsed since the initial button press and subsequent repeated presses occur every 50ms. Co-authored-by: Chloe <25727384+ogniK5377@users.noreply.github.com> | |||
2020-12-18 | controllers/npad: Make press_state atomic | Morph | |
2020-12-18 | util: Add URL Request Interceptor for QWebEngine | Morph | |
2020-12-18 | bootmanager: Add a check whether loading is complete | Morph | |
2020-12-18 | applets/web: Implement the default web browser applet frontend | Morph | |
2020-12-18 | applets/web: Implement the offline browser applet backend | Morph | |
2020-12-18 | applets/web: Initial implementation of the web browser applet | Morph | |
2020-12-18 | applets: Remove the previous web browser applet implementation | Morph | |
2020-12-18 | Merge pull request #5205 from Morph1984/oss-extended-plus-minus | LC | |
system_archive: Add + and - buttons to the Nintendo Extended OSS font | |||
2020-12-18 | system_archive: Add + and - buttons to the Nintendo Extended OSS font | Morph | |
2020-12-18 | Merge pull request #5200 from Morph1984/oss-font-extended | LC | |
system_archive: Update Nintendo Extended OSS font |