// d3d12umddi.h
PFND3D12DDI_SERIALIZE_LIBRARY_0010 Pfnd3d12ddiSerializeLibrary0010;
HRESULT Pfnd3d12ddiSerializeLibrary0010(
D3D12DDI_HDEVICE hDevice,
D3D12DDI_HPIPELINELIBRARY hLibrary,
VOID *pBlob
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Implemented by the client driver to serialize the library.
hDeviceA device handle.
hLibraryA library handle.
pBlobPointer to a blob.
Returns HRESULT.
//Declaration
PFND3D12DDI_SERIALIZE_LIBRARY_0010 Pfnd3d12ddiSerializeLibrary0010;
// Definition
HRESULT Pfnd3d12ddiSerializeLibrary0010
(
D3D12DDI_HDEVICE hDevice
D3D12DDI_HPIPELINELIBRARY hLibrary
VOID *pBlob
)
{...}
PFND3D12DDI_SERIALIZE_LIBRARY_0010