summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
AgeCommit message (Collapse)Author
2017-06-15VertexShaderManager: Rename projection hack variablesMerryMage
2017-06-11VideoConfig: Remove bRunningMerryMage
Value was set but not used.
2017-06-10VideoConfig: Remove useless header includesLéo Lam
2017-06-10VideoConfig: Remove manual panic alert setting loadLéo Lam
This code hadn't been touched since 2010. Nowadays, the panic alert setting is loaded by ConfigManager and applied in UICommon. VideoConfig has no business messing with it.
2017-06-03GameConfigLoader: Add GFX Game INI translationsMerryMage
2017-04-29HiresTextures: Support parsing DDS files directlyStenzek
This leaves DDS textures using DXT1/3/5 compressed in-memory, which can be passed directly to the backend.
2017-04-04Add configurable toggle that rounds vertices to the nearest pixel wheniwubcode
w=1. This fixes some games at higher IRs.
2017-04-01VideoBackends: Add configuration field for GPU texture decodingStenzek
2017-03-15videoconfig: add BBoxPreferStencilImplementationMichael Maltese
@JMC47 requested this to be able to do performance comparisons.
2017-03-10VideoBackends: Move max texture size to VideoConfigStenzek
This stops the virtual method call from within the Renderer constructor. The initialization here for GL had to be moved to VideoBackend, as the Renderer constructor will not have been executed before the value is required.
2017-03-08Save new framedump options.Vlad Firoiu
2017-02-27Dump to arbitrary URLs.Vlad Firoiu
2017-02-27Configable dump codec.Vlad Firoiu
2017-02-27Arbitrary dump formats.Vlad Firoiu
2017-02-27Merge pull request #4958 from RisingFog/avidump_bitrateAnthony
Add configurable video dump bitrate to INI
2017-02-25Add configurable video dump bitrate to INIChris Burgener
2017-02-19VideoBackends: Add a developer option to disable the shader cache.Jules Blok
Makes it easier to disable the cache while working on the shaders.
2017-01-21VideoConfig: Fix boolean default values.degasus
2016-11-28VideoConfig: Add option for full-resolution frame dumpingStenzek
2016-11-23VideoCommon: Support dumping frames to imagesStenzek
This is mainly for potential Android fifoci usage, and thus is not exposed anywhere in the UI. To enable, set DumpFramesAsImages under Settings in GFX.ini.
2016-11-11VideoConfig: Remove fullscreen flags.Jules Blok
These weren't actually settings, they were used as a bad way to communicate with the GPU thread.
2016-10-10VideoConfig: Turn on ForceTrueColor by default.Jules Blok
2016-10-10VideoConfig: Add an option to force RGB8 EFB format.Jules Blok
2016-10-07Fix missing includesLéo Lam
Aren't indirect includes great?
2016-10-01Implement experimental Vulkan backendStenzek
2016-10-01VideoCommon: Add config fields for multithreading and validation layersStenzek
2016-07-31Merge pull request #4047 from lioncash/enum-fwdMarkus Wick
VideoCommon: Make API_TYPE an enum class
2016-07-29VideoCommon: Make API_TYPE an enum classLioncash
Allows for forward declarations in most places, which prevents dumping unrelated VideoCommon.h contents directly into headers.
2016-07-23Improve netplay setup dialog UXAestek
* Focus "Hash Code" / "IP address" text box by default in "Connect" * Focus game list in "Host" tab * RETURN keypress now host/join depending on selected tab * Remember last hosted game * Remove PanicAlertT: * Simply log message to netplay window * Remove them when they are useless * Show some netplay message in OSD * Chat messages * Pad buffer changes * Desync alerts * Stop the game consistently when another player disconnects / crashes * Prettify chat textbox * Log netplay ping to OSD Join scenario: * Copy netplay code * Open netplay * Paste code * Press enter Host scenario: * Open netplay * Go to host tab * Press enter
2016-06-26Remove the rest of ShaderDebugging.Scott Mansell
Without UID checking, it's basically a no-op that disables shader cache and stores the shader source code (without ever reading it back).
2016-06-24Reformat all the things. Have fun with merge conflicts.Pierre Bourdon
2016-02-29Revert "Merge pull request #3578 from Armada651/forced-slow-depth"Jules Blok
This reverts commit e2a1a085b6a9f36b23128872de85da727d231882, reversing changes made to 2aea549eef85ba165672c8355d0e90781d805efd.
2016-02-08VideoConfig: Replace FastDepthCalc by ForcedSlowDepth.Jules Blok
Fast depth is now more accurate than slow depth and should always be used. The option will be kept in a different form as it is still used as a hack to fix some games. Also, the slow depth code path will still be relied upon by cards that don't support GL_ARB_clip_control.
2016-01-07Merge pull request #3464 from Armada651/stereo-warningsPierre Bourdon
VideoConfig: Don't give warnings for per-game stereoscopy parameters.
2016-01-06VideoConfig: Don't give warnings for per-game stereoscopy parameters.Jules Blok
2016-01-06VideoSW: Use more VideoCommondegasus
Now we require lots of empty functions, but this removes by far more duplicated code.
2016-01-05Throttler: Rename "framelimiter" to "emulation speed".degasus
We don't throttle by frames, we throttle by coretiming speed. So looking up VI for calculating the speed was just very wrong. The new ini option is a float, 1.0f for fullspeed. In the GUI, percentual values are used.
2015-12-28Merge pull request #3381 from Armada651/revert-3076Markus Wick
Revert "Merge pull request #3076 from void-ghost/stereo3d_presets"
2015-12-24Revert "Config Hotfix: Prevent per-game settings (ie. GameINI) being stored ↵Scott Mansell
to the global user configuration."
2015-12-23Revert "Merge pull request #3076 from void-ghost/stereo3d_presets"Jules Blok
This reverts commit 81414b4fa2edadf0b2a2bb0bd4df61dd59165eec, reversing changes made to b926061f641692ae31bacbeba304f5941db7d3bc. Conflicts: Source/Core/DolphinWX/Frame.cpp Source/Core/VideoCommon/VideoConfig.cpp Source/Core/VideoCommon/VideoConfig.h
2015-12-22VideoConfig: Fix stereoscopy preset settings.Jules Blok
PR #3076 looks to be pretty poor quality and should be reverted.
2015-12-22VideoConfig: Move all stereoscopy options to the stereoscopy section.Jules Blok
2015-12-22VideoConfig: Move all GameINI stereoscopy options to the stereoscopy section.Jules Blok
2015-12-22Config: Hotfix to prevent per-game settings from ie. GameINIs being stored ↵Admiral H. Curtiss
to the global user configuration.
2015-12-19Merge pull request #3332 from degasus/masterScott Mansell
MSAA: Store samples in ini files.
2015-12-15MSAA: Store samples in ini files.degasus
2015-12-13VideoConfig: Change convergence setting to percentage value.Jules Blok
2015-11-05Remove the "Show EFB Copy Regions" debug option.Scott Mansell
It was only implemented in OpenGL, though the option was visible in both backends, leading to memory leaks if you enabled it in DirectX. And it wasn't particularly useful as a debug feature as it only showed where in the EFB the copies were taken from, not what format it was, or what the copy was used for, or what content was in the EFB at that point in time. Also, it stretched the copy regions relative to the window, so the on-screen regions don't even line up with the window unless the game used the full EFB (some pal games) and you game image stretched to the full window.
2015-10-03VideoCommon: Silence -Wsign-compare warnings.Rohit Nirmal
2015-09-24VideoConfig/LocalConfig/HotkeyManager: Added hotkeys for switching stereo-3d ↵ghost
presets. Added 3 depth/convergence presets. They are adjustable via (existing) hotkeys - changes to depth and convergence are applied to current preset. Added 3 hotkeys for activating presets. Added hotkey for toggle between first and second preset. Added OSD message for convergence/depth changes. Presets are saved into per-game configs.