mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 09:23:53 +01:00
16 lines
334 B
C
16 lines
334 B
C
|
#include "./com/com_include.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
/**
|
||
|
* \brief Retrieves an adapter LUID
|
||
|
*
|
||
|
* Note that this only works reliably within the
|
||
|
* module that this function was compiled into.
|
||
|
* \param [in] Adapter The adapter index
|
||
|
* \returns LUID An LUID for that adapter
|
||
|
*/
|
||
|
LUID GetAdapterLUID(UINT Adapter);
|
||
|
|
||
|
}
|