1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-14 00:48:44 +01:00
dxvk/src/d3d11/d3d11_options.h

21 lines
379 B
C
Raw Normal View History

2018-03-24 17:29:13 +01:00
#pragma once
#include "d3d11_include.h"
namespace dxvk {
enum class D3D11Option : uint64_t {
IgnoreMapFlagNoWait = 0,
};
using D3D11OptionSet = Flags<D3D11Option>;
/**
* \brief Retrieves per-app options
*
* \param [in] AppName Executable name
* \returns D3D11 options
*/
D3D11OptionSet D3D11GetAppOptions(const std::string& AppName);
}