// Copyright (c) 2008-2023 the Urho3D project // License: MIT #pragma once namespace Urho3D { // 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_OPENGL = "OpenGL"; static const String EP_DIRECT3D11 = "Direct3D11"; 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"; }