// d3d12umddi.h
PFND3D12DDI_CALCPRIVATESCHEDULINGGROUPSIZE_0050 Pfnd3d12ddiCalcprivateschedulinggroupsize0050;
SIZE_T Pfnd3d12ddiCalcprivateschedulinggroupsize0050(
D3D12DDI_HDEVICE unnamedParam1,
const D3D12DDIARG_CREATESCHEDULINGGROUP_0050 *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The pfnCalcPrivateSchedulingGroupSize callback function returns the size of the hardware scheduling group.
unnamedParam1An hDevice that represents a handle to the display device (graphics context).
unnamedParam2Pointer to a D3D12DDIARG_CREATESCHEDULINGGROUP_0050 structure that represents arguments needed to create a hardware scheduling group.
Returns SIZE_T that represents the size.
//Declaration
PFND3D12DDI_CALCPRIVATESCHEDULINGGROUPSIZE_0050 Pfnd3d12ddiCalcprivateschedulinggroupsize0050;
// Definition
SIZE_T Pfnd3d12ddiCalcprivateschedulinggroupsize0050
(
D3D12DDI_HDEVICE Arg1
CONST D3D12DDIARG_CREATESCHEDULINGGROUP_0050 *
)
{...}