| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-21 | vi: IApplicationDisplayService:GetIndirectLayerImageRequiredMemoryInfo | David Marcec | |
| Needed for dark souls and monster hunter | |||
| 2020-07-21 | Merge pull request #4359 from ReinUsesLisp/clamp-shared | Rodrigo Locatti | |
| renderer_{opengl,vulkan}: Clamp shared memory to host's limit | |||
| 2020-07-21 | Merge pull request #4360 from ReinUsesLisp/glasm-bar | Rodrigo Locatti | |
| gl_arb_decompiler: Execute BAR even when inside control flow | |||
| 2020-07-21 | Merge pull request #4361 from ReinUsesLisp/lane-id | Rodrigo Locatti | |
| decode/other: Implement S2R.LaneId | |||
| 2020-07-21 | surface_params: Make use of designated initializers where applicable | Lioncash | |
| Provides a convenient way to avoid unnecessary zero initializing. | |||
| 2020-07-21 | surface_params: Remove redundant assignment | Lioncash | |
| This is a redundant assignment that can be removed. | |||
| 2020-07-21 | surface_params: Replace questionable usages of the comma operator with ↵ | Lioncash | |
| semicolons These are bugs waiting to happen. | |||
| 2020-07-21 | Merge pull request #4306 from ReinUsesLisp/bsd-network | David | |
| core/network: Add network abstraction | |||
| 2020-07-21 | video_core: Remove unused variables | Lioncash | |
| Silences several compiler warnings about unused variables. | |||
| 2020-07-21 | vk_rasterizer: Remove unused variable in Clear() | Lioncash | |
| The relevant values are already assigned further down in the lambda, so this can be removed entirely. | |||
| 2020-07-21 | compatible_formats: Add missing header guard | Lioncash | |
| Prevents potential inclusion issues from occurring. | |||
| 2020-07-21 | video_core: Allow copy elision to take place where applicable | Lioncash | |
| Removes const from some variables that are returned from functions, as this allows the move assignment/constructors to execute for them. | |||
| 2020-07-21 | Merge pull request #4324 from ReinUsesLisp/formats | bunnei | |
| video_core: Fix, add and rename pixel formats | |||
| 2020-07-20 | configure_ui: Ensure a separator follows the returned path | lat9nq | |
| 2020-07-20 | configure_ui: don't use an empty string | lat9nq | |
| If the user had cancelled, it would clear the text box. That behavior was sanitized underneath, but may anyways cause inconveniences. | |||
| 2020-07-20 | main: Don't use as many string copies | lat9nq | |
| Co-Authored-By: LC <lioncash@users.noreply.github.com> | |||
| 2020-07-20 | main: rewrite (save as) screenshot saving | lat9nq | |
| This picks a default directory and file name. If on Windows and save-as screenshot saving is enabled, it asks the user, first defaulting to the default screenshot path, and with a default filename in the format `[title_id]_[year-mt-dy_hr-mn-sc-msc].png`. Otherwise, or on Linux for now, it simply saves a file in that directory with that file name. | |||
| 2020-07-20 | configuration: Setup UI to config screenshot path and saving | lat9nq | |
| This adds two options to the General -> UI tab. The first disables picking a place to save the file. The second chooses a default directory for saving screenshots. | |||
| 2020-07-20 | common: Add a screenshots directory | lat9nq | |
| Adds a screenshots directory as a path managed by FileUtil. | |||
| 2020-07-21 | video_core: Remove redundant pixel format type | David Marcec | |
| We already get the format type before converting shadow formats and during shadow formats. | |||
| 2020-07-20 | Merge pull request #4168 from ReinUsesLisp/global-memory | bunnei | |
| gl_arb_decompiler: Use NV_shader_buffer_{load,store} on assembly shaders | |||
| 2020-07-20 | buffer_cache: Eliminate redundant map lookup in MarkRegionAsWritten() | Lioncash | |
| We can make use of emplace()'s return value to determine whether or not we need to perform an increment. emplace() performs no insertion if an element already exist, so this can eliminate a find() call. | |||
| 2020-07-20 | wait_tree: Include Midnight Blue dark themes | Morph | |
| 2020-07-20 | qt-themes: Add Midnight Blue qdarkstyle theme (2.8.1) | James Rowe | |
| Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com> | |||
| 2020-07-20 | Address issues | David Marcec | |
| 2020-07-19 | configure_graphics_advnaced: clang-format mk ii | lat9nq | |
| 2020-07-19 | configure_graphics_advanced: Fix oversight from rebase | lat9nq | |
| 2020-07-19 | configuration_shared: Remove unused functions | lat9nq | |
| These were only kept for compatibility with old code during testing. | |||
| 2020-07-19 | configuration: Use forward declares and remove extraneous structs | lat9nq | |
| 2020-07-19 | configuration_shared: Make CheckState strongly typed | lat9nq | |
| Also gets rid of unnecessary explicit namespace usage. | |||
| 2020-07-19 | clang-format | lat9nq | |
| 2020-07-19 | configuration_shared: Break up tracker structs to respective classes | lat9nq | |
| One less global variable. | |||
| 2020-07-19 | configure_system: break instead of semicolon | lat9nq | |
| Makes the code more readable Co-Authored-By: LC <lioncash@users.noreply.github.com> | |||
| 2020-07-19 | clang-format | lat9nq | |
| 2020-07-19 | configure_system: Highlight labels on startup | lat9nq | |
| whoops | |||
| 2020-07-19 | configure_graphics: Fix layout in global config | lat9nq | |
| Fixes a regression where the global config takes up a lot of extra space. | |||
| 2020-07-19 | configure_per_game: Improve style consistency | lat9nq | |
| The way the configurations are set up, it is not trivial to do this. I'll leave it as is, but the API selection, and the background color and volume slider selectors are kind of not following the style. | |||
| 2020-07-19 | configure_system: Implement highlighted overrides | lat9nq | |
| 2020-07-19 | configuration_shared: Add default combobox setup function | lat9nq | |
| Not a catch-all, but helps clean up the code for when I do this a lot. Also fixes some bugs caught in configure_graphics. | |||
| 2020-07-19 | configuration_shared: Use an int instead of a QString | lat9nq | |
| I noticed some of the code could be reduced to just passing the function an int, since I was doing the same thing over and over. Also clang-formats configure_graphics | |||
| 2020-07-19 | configure_graphics_advanced: Implement highlighted overrides | lat9nq | |
| 2020-07-19 | configuration_shared: Switch back to background colors | lat9nq | |
| Let's see if I make up my mind. | |||
| 2020-07-19 | configuration_shared: Better use global text | lat9nq | |
| Also adds trackers for graphics and advanced graphics | |||
| 2020-07-19 | configure_audio: fix UI margins | lat9nq | |
| 2020-07-19 | configure_graphics: Implement highlighted overrides | lat9nq | |
| 2020-07-19 | configure_audio: Implement highlighted overrides | lat9nq | |
| 2020-07-19 | configuration_shared: Require name of the widget for highlighting | lat9nq | |
| Prevents mass-coloring of elements later on | |||
| 2020-07-19 | configuration_shared: Use a highlight instead of background color | lat9nq | |
| Fixes visibility in the built-in dark theme | |||
| 2020-07-19 | configure_general: Implement manual tristate buttons | lat9nq | |
| 2020-07-19 | configuration_shared: Initial functions and data for manual tristate | lat9nq | |
| Sets up initial support for implementing colored tristate functions. These functions color a QWidget blue when it's overriding a global setting, and discolor it when not. The lack of color indicates it uses the global state, replacing the Qt::CheckState::PartiallyChecked state with the global state. | |||
