// d3d12umddi.h
PFND3D12DDI_CREATEVIDEOEXTENSIONCOMMAND_0063 Pfnd3d12ddiCreatevideoextensioncommand0063;
HRESULT Pfnd3d12ddiCreatevideoextensioncommand0063(
D3D12DDI_HDEVICE hDrvDevice,
const D3D12DDIARG_CREATE_VIDEO_EXTENSION_COMMAND_0063 *pArgs,
D3D12DDI_HVIDEOEXTENSIONCOMMAND_0063 hDrvVideoExtensionCommand
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Creates a video extension command. All significant internal resource allocations used by the extension command should be created during video extension creation.
hDrvDeviceHandle for the Direct3D 12 device.
pArgsPointer to a D3D12DDIARG_CREATE_VIDEO_EXTENSION_COMMAND_0063 structure that contains arguments.
hDrvVideoExtensionCommandA handle to a video extension command D3D12DDI_HVIDEOEXTENSIONCOMMAND_0063.
Returns HRESULT.
//Declaration
PFND3D12DDI_CREATEVIDEOEXTENSIONCOMMAND_0063 Pfnd3d12ddiCreatevideoextensioncommand0063;
// Definition
HRESULT Pfnd3d12ddiCreatevideoextensioncommand0063
(
D3D12DDI_HDEVICE hDrvDevice
const D3D12DDIARG_CREATE_VIDEO_EXTENSION_COMMAND_0063 *pArgs
D3D12DDI_HVIDEOEXTENSIONCOMMAND_0063 hDrvVideoExtensionCommand
)
{...}