mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 00:48:44 +01:00
21 lines
379 B
C
21 lines
379 B
C
|
#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);
|
||
|
|
||
|
}
|