// d3d12umddi.h
PFND3D12DDI_CREATEVIDEOPROCESSOR_0043 Pfnd3d12ddiCreatevideoprocessor0043;
HRESULT Pfnd3d12ddiCreatevideoprocessor0043(
D3D12DDI_HDEVICE hDrvDevice,
const D3D12DDIARG_CREATE_VIDEO_PROCESSOR_0043 *pArgs,
D3D12DDI_HVIDEOPROCESSOR_0020 hDrvVideoProcessor
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The pfnCreateVideoProcessor callback function creates a video processor.
hDrvDeviceA handle to the display device (graphics context).
pArgsThe arguments used to create a video processor.
hDrvVideoProcessorThe video processor.
Returns STATUS_SUCCESS if completed successfully.
//Declaration
PFND3D12DDI_CREATEVIDEOPROCESSOR_0043 Pfnd3d12ddiCreatevideoprocessor0043;
// Definition
HRESULT Pfnd3d12ddiCreatevideoprocessor0043
(
D3D12DDI_HDEVICE hDrvDevice
CONST D3D12DDIARG_CREATE_VIDEO_PROCESSOR_0043 *pArgs
D3D12DDI_HVIDEOPROCESSOR_0020 hDrvVideoProcessor
)
{...}
PFND3D12DDI_CREATEVIDEOPROCESSOR_0043
Register your implementation of this callback function by setting the appropriate member of D3D12DDIARG_CREATE_VIDEO_PROCESSOR_0043 and then calling Pfnd3d12ddiCreatevideoprocessor0043.