| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- //
- // Copyright (c) 2008-2017 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- namespace Atomic
- {
- // Engine parameters
- static const String EP_AUTOLOAD_PATHS = "AutoloadPaths";
- static const String EP_BORDERLESS = "Borderless";
- static const String EP_DUMP_SHADERS = "DumpShaders";
- static const String EP_EVENT_PROFILER = "EventProfiler";
- static const String EP_EXTERNAL_WINDOW = "ExternalWindow";
- static const String EP_FLUSH_GPU = "FlushGPU";
- static const String EP_FORCE_GL2 = "ForceGL2";
- static const String EP_FRAME_LIMITER = "FrameLimiter";
- static const String EP_FULL_SCREEN = "FullScreen";
- static const String EP_HEADLESS = "Headless";
- static const String EP_HIGH_DPI = "HighDPI";
- static const String EP_LOG_LEVEL = "LogLevel";
- static const String EP_LOG_NAME = "LogName";
- static const String EP_LOG_QUIET = "LogQuiet";
- static const String EP_LOW_QUALITY_SHADOWS = "LowQualityShadows";
- static const String EP_MATERIAL_QUALITY = "MaterialQuality";
- static const String EP_MONITOR = "Monitor";
- static const String EP_MULTI_SAMPLE = "MultiSample";
- static const String EP_ORIENTATIONS = "Orientations";
- static const String EP_PACKAGE_CACHE_DIR = "PackageCacheDir";
- static const String EP_RENDER_PATH = "RenderPath";
- static const String EP_REFRESH_RATE = "RefreshRate";
- static const String EP_RESOURCE_PACKAGES = "ResourcePackages";
- static const String EP_RESOURCE_PATHS = "ResourcePaths";
- static const String EP_RESOURCE_PREFIX_PATHS = "ResourcePrefixPaths";
- static const String EP_SHADER_CACHE_DIR = "ShaderCacheDir";
- static const String EP_SHADOWS = "Shadows";
- static const String EP_SOUND = "Sound";
- static const String EP_SOUND_BUFFER = "SoundBuffer";
- static const String EP_SOUND_INTERPOLATION = "SoundInterpolation";
- static const String EP_SOUND_MIX_RATE = "SoundMixRate";
- static const String EP_SOUND_STEREO = "SoundStereo";
- static const String EP_TEXTURE_ANISOTROPY = "TextureAnisotropy";
- static const String EP_TEXTURE_FILTER_MODE = "TextureFilterMode";
- static const String EP_TEXTURE_QUALITY = "TextureQuality";
- static const String EP_TIME_OUT = "TimeOut";
- static const String EP_TOUCH_EMULATION = "TouchEmulation";
- static const String EP_TRIPLE_BUFFER = "TripleBuffer";
- static const String EP_VSYNC = "VSync";
- static const String EP_WINDOW_HEIGHT = "WindowHeight";
- static const String EP_WINDOW_ICON = "WindowIcon";
- static const String EP_WINDOW_POSITION_X = "WindowPositionX";
- static const String EP_WINDOW_POSITION_Y = "WindowPositionY";
- static const String EP_WINDOW_RESIZABLE = "WindowResizable";
- static const String EP_WINDOW_TITLE = "WindowTitle";
- static const String EP_WINDOW_WIDTH = "WindowWidth";
- static const String EP_WORKER_THREADS = "WorkerThreads";
- // ATOMIC BEGIN
- static const String EP_WINDOW_MAXIMIZED = "WindowMaximized";
- static const String EP_AUTO_METRICS = "AutoMetrics";
- static const String EP_PROFILER_LISTEN = "ProfilerListen";
- static const String EP_PROFILER_PORT = "ProfilerPort";
- // ATOMIC END
- }
|