// dxgiddi.h
typedef struct DXGI_DDI_BASE_ARGS {
[in] DXGI_DDI_BASE_CALLBACKS *pDXGIBaseCallbacks;
union {
DXGI1_6_1_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions6_1;
DXGI1_5_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions6;
DXGI1_4_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions5;
[in/out] DXGI1_3_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions4;
[in/out] DXGI1_2_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions3;
[in/out] DXGI1_1_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions2;
[in/out] DXGI_DDI_BASE_FUNCTIONS *pDXGIDDIBaseFunctions;
};
} DXGI_DDI_BASE_ARGS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGI_DDI_BASE_ARGS structure contains Microsoft DirectX Graphics Infrastructure (DXGI) basic device driver interface (DDI) device creation arguments.
pDXGIBaseCallbacks [in]A pointer to a DXGI_DDI_BASE_CALLBACKS structure that contains a table of Microsoft Direct3D runtime callback functions that the driver can use to access kernel services.
pDXGIDDIBaseFunctions6_1pDXGIDDIBaseFunctions6pDXGIDDIBaseFunctions5pDXGIDDIBaseFunctions4 [in/out]A pointer to a DXGI1_3_DDI_BASE_FUNCTIONS structure that the user-mode display driver fills with a table of its functions. The Direct3D runtime uses these functions to communicate with the user-mode display driver.
Supported starting with Windows 8.1.
pDXGIDDIBaseFunctions3 [in/out]A pointer to a DXGI1_2_DDI_BASE_FUNCTIONS structure that the user-mode display driver fills with a table of its functions. The Direct3D runtime uses these functions to communicate with the user-mode display driver.
Supported starting with Windows 8.
pDXGIDDIBaseFunctions2 [in/out]A pointer to a DXGI1_1_DDI_BASE_FUNCTIONS structure that the user-mode display driver fills with a table of its functions. The Direct3D runtime uses these functions to communicate with the user-mode display driver.
Supported starting with Windows 7.
pDXGIDDIBaseFunctions [in/out]A pointer to a DXGI_DDI_BASE_FUNCTIONS structure that the user-mode display driver fills with a table of its functions. The Direct3D runtime uses these functions to communicate with the user-mode display driver.