// d3dkmddi.h
DXGKDDI_SWITCHTOHWCONTEXTLIST DxgkddiSwitchtohwcontextlist;
NTSTATUS DxgkddiSwitchtohwcontextlist(
IN_CONST_HANDLE hAdapter,
IN_CONST_PDXGKARG_SWITCHTOHWCONTEXTLIST pHwContextList
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Clarifies the order of execution of first and second contexts submitted.
hAdapterA handle to the hardware adapter.
pHwContextListPointer to the DXGKARG_SWITCHTOHWCONTEXTLIST structure that represents the hardware context list.
Returns NTSTATUS.
//Declaration
DXGKDDI_SWITCHTOHWCONTEXTLIST DxgkddiSwitchtohwcontextlist;
// Definition
NTSTATUS DxgkddiSwitchtohwcontextlist
(
IN_CONST_HANDLE hAdapter
IN_CONST_PDXGKARG_SWITCHTOHWCONTEXTLIST pHwContextList
)
{...}