summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
AgeCommit message (Collapse)Author
2025-11-11CoreTiming: Add "Rush Frame Presentation" setting to throttle only once ↵Jordan Woyak
after each presentation for lower input latency.
2025-11-11Merge pull request #14071 from iwubcode/avoid_config_framebuffer_managerJMC47
VideoCommon: pass the EFB buffer scale into the FramebufferManager
2025-11-06Common: Remove the string parameters from the HookableEvent interface.Jordan Woyak
2025-11-05VideoCommon: pass the EFB buffer scale into the FramebufferManager instead ↵iwubcode
of pulling it from config, in the future this will allow us to have multiple framebuffers
2025-11-02Common: Make HookableEvent use non-static data.Jordan Woyak
Co-authored-by: Dentomologist <dentomologist@gmail.com>
2025-11-02VideoCommon: fix wrong path to glslang includeiwubcode
2025-11-02Merge pull request #14042 from iwubcode/bp_functions_globalJMC47
VideoCommon: move global variables out of BPFunctions
2025-11-02Merge pull request #13975 from iwubcode/shader_includesJMC47
VideoBackends / VideoCommon: add support for specifying include files in shader code
2025-11-01Merge pull request #14057 from TellowKrinkle/VkRenderWrongLayoutJosJuice
VideoCommon: Fix render to texture in wrong layout
2025-11-01Merge pull request #14035 from Dentomologist/pauseandlock_refactoringJosJuice
PauseAndLock Refactoring
2025-10-31VideoCommon: rename ScissorResult 'm_result' to 'rectangles' to better ↵iwubcode
reflect what the member is
2025-10-31VideoCommon: move global variables out of BPFunctionsiwubcode
2025-10-30VideoCommon: Fix render to texture in wrong layoutTellowKrinkle
2025-10-30Merge pull request #14045 from JoshuaVandaele/warn-fixJordan Woyak
Fix various warnings
2025-10-30CustomPipeline.cpp: Fix unused-function warningJoshua Vandaële
This whole file is apparently going away soon.
2025-10-29MaterialAsset: Fix shadowed fieldJoshua Vandaële
2025-10-28VideoCommon: Clean up and eliminate the mutex in AsyncRequests using ↵Jordan Woyak
WaitableSPSCQueue.
2025-10-26VideoCommon/AsyncRequests: Remove now unnecessary `SetEnable` function. ↵Jordan Woyak
Requests are now always enabled. Call `SetPassthrough` on initialization to not be racy.
2025-10-26VideoBackends / VideoCommon: add support for specifying include files in ↵iwubcode
shader code
2025-10-26FifoManager: Remove redundant PauseAndLock parametersDentomologist
PauseAndLock was only called with do_lock=true, and the function only used unpauseOnUnlock when do_lock was false.
2025-10-26FifoManager: Extract RestoreState from PauseAndLockDentomologist
Replace calls of FifoManager::PauseAndLock(do_lock=false) with new function RestoreState for clarity.
2025-10-24CMake: Fix bundled glslangTellowKrinkle
2025-10-16Imgui: Add a new default font (VeraMono - 49kb) that scales better than the ↵TryTwo
old default. Allow loading a custom font by naming it OSD_Font.ttf and placing the file in the User/Load folder, to load that font instead. Useful for future testing.
2025-10-15Merge pull request #13953 from TryTwo/add_osd_tabJMC47
Qt Settings: Transfer OSD settings to a new OSD pane.
2025-10-13VideoBackend: Rename GetName to GetConfigNameDentomologist
Make the function name more explicit and a better match for GetDisplayName. Change NAME to CONFIG_NAME while I'm at it.
2025-10-10Movie Window: Move customization options from Menu Bar to OSD pane, but add ↵TryTwo
options to toggle the window and to open the OSD pane. Add new setting to show/hide the Movie Window.
2025-10-07fixed the lint errorfizzlepicklepop
2025-10-07Add toggles for Speedrun timer + Achievement badges visibilityfizzlepicklepop
Added some new visibility toggles so players can choose what to show (or hide) during their RetroAchievements runs: Toggle for the Speedrun Leaderboards timer Toggle for Achievement Challenge badges
2025-09-27Externals: Update glslang to 16.0.0 and allow using system glslangJoshua Vandaële
2025-09-26Merge pull request #13940 from iwubcode/glslang_updateJMC47
Externals / VideoCommon: update glslang to latest, turn into submodule
2025-09-25OSD / Imgui: Add font size spinbox to Interface Pane.TryTwo
Adjust some imgui windows to work better with different font sizes.
2025-09-23Externals / VideoCommon: update glslang to latest, turn into submoduleiwubcode
2025-09-16Merge pull request #13941 from jordan-woyak/opcode-conceptsJMC47
VideoCommon/OpcodeDecoding: Replace enable_if with concepts.
2025-09-16Merge pull request #13895 from iwubcode/update_shader_assetJMC47
VideoCommon: update shader asset to support additional features in custom pipelines
2025-09-16Merge pull request #13889 from iwubcode/texture_and_sampler_assetJMC47
VideoCommon: add TextureAndSamplerAsset for use in custom materials
2025-09-13VideoCommon/OpcodeDecoding: Replace enable_if with concepts.Jordan Woyak
2025-08-23VideoCommon: update material asset to support render state properties, ↵iwubcode
support multi-pass, and textures are now split out (as well as supporting a way to calculate sampler origin)
2025-08-23VideoBackends / VideoCommon: rename member variables in RenderState to be ↵iwubcode
consistent
2025-08-23VideoCommon: fix -Wmismatched-tags warningTillmann Karras
2025-08-22Merge pull request #13869 from TryTwo/ImGui_UpdatesJMC47
Externals: Update ImGui to 1.92.2 and ImPlot. Update code to use new features.
2025-08-22VideoCommon: further remove 'CustomPipeline' details, so we can fully remove ↵iwubcode
it in the very near future
2025-08-22VideoCommon: update shader asset to support both vertex and pixel shaders; ↵iwubcode
rename to 'RasterSurfaceShader'
2025-08-20VideoCommon: add TextureAndSamplerAsset, this asset contains both the raw ↵iwubcode
texture data and data about how the texture should be sampled
2025-08-20VideoCommon: Remove unused EnumMaps from PixelShaderGenSintendo
They appear to have been unused since #13432.
2025-08-19Merge pull request #13873 from ↵Tilka
Dentomologist/dolphinanalytics_use_pascal_case_for_gamequirk_enum DolphinAnalytics: Use Pascal case for GameQuirk enum
2025-08-18Update code to work with new version of ImGui.TryTwo
UpdateImGuiTexture now handles creating font textures and modifying them.
2025-08-18OpcodeDecoder: provide default GetVertexSize() implementationTillmann Karras
2025-08-14DolphinAnalytics: Use Pascal case for GameQuirk enumDentomologist
2025-08-01Merge pull request #13780 from jordan-woyak/fix-text-filter-nearestAdmiral H. Curtiss
VideoCommon: Fix "Force Nearest" texture filter setting.
2025-08-01Merge pull request #13749 from iwubcode/vertex_shadergen_expand_fixAdmiral H. Curtiss
VideoCommon: fix regression in vertexshadergen for line/point expansion