26 lines
605 B
C
26 lines
605 B
C
#pragma once
|
||
|
||
#ifdef NVAPI_API_EXPORTS
|
||
#define NVAPI_API __declspec(dllexport)
|
||
#else
|
||
#define NVAPI_API __declspec(dllimport)
|
||
#endif
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
/**
|
||
* 强制NVIDIA驱动使用Native模式进行Vulkan/OpenGL呈现
|
||
*
|
||
* 这个函数通过NvAPI Driver Settings API设置"Vulkan/OpenGL present method"为Native模式,
|
||
* 避免驱动自动升级到DXGI Flip Model,从而保持透明度效果。
|
||
*
|
||
* @return true 如果成功设置,false 如果失败(非N卡、初始化失败等)
|
||
*/
|
||
NVAPI_API bool ForceNvidiaNativePresent();
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|