summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
AgeCommit message (Collapse)Author
2025-11-23Merge pull request #14149 from iwubcode/shader_asset_vector_propertiesJMC47
VideoCommon: update ShaderAsset to use a vector of properties
2025-11-22Merge pull request #14037 from jordan-woyak/presentation-timingJMC47
Add "Rush Frame Presentation" and "Smooth Early Presentation" settings.
2025-11-21VideoCommon: update ShaderAsset to use a vector of properties, this way we ↵iwubcode
ensure the order of these properties match the order of the material
2025-11-21VideoCommon: update ShaderAsset to remove requirement of the code name being ↵iwubcode
in the shader source, this just makes it more difficult to iteratively test changes, assume shader devs know what they are doing
2025-11-19Merge pull request #14121 from jordan-woyak/warn-silenceJordan Woyak
Common and VideoCommon: Silence a few warnings.
2025-11-16Merge pull request #13922 from TryTwo/imgui_add_default_fontJosJuice
OSD/Imgui: Add a better default font
2025-11-15VideoCommon/FramebufferManager: Silence warning:Jordan Woyak
warning: virtual method '~FramebufferManager' is inside a 'final' class and can never be overridden [-Wunnecessary-virtual-specifier]
2025-11-12Merge pull request #14100 from AndrewGDX/masterJordan Woyak
Improved stereoscopic 3D settings
2025-11-12Improved stereoscopic 3D settingsAndrewGDX
2025-11-11VideoCommon/PerformanceMetrics: Display current offset between the latest ↵Jordan Woyak
frame presentation time and the intended presentation time in the "Show Frame Times" box.
2025-11-11VideoCommon: Add "Smooth Early Presentation" setting to improve frame pacing ↵Jordan Woyak
with ImmediateXFB and/or RushFramePresentation.
2025-11-11VideoCommon: Make Presenter aware of the next swap time to eliminate unsafe ↵Jordan Woyak
usage of GetTicks() with ImmediateXFB + DualCore.
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