// iddcx.h
struct IDDCX_SYSTEM_BUFFER_INFO {
UINT Size;
UINT Pitch;
UINT Height;
UINT Width;
DXGI_FORMAT Format;
VOID *pBuffer;
};
View the official Windows Driver Kit DDI referenceNo description available.
IDDCX_SYSTEM_BUFFER_INFO holds the resulting buffer-specific information after a buffer release and acquire operation.
SizeSize of this structure, in bytes.
PitchThe pitch (also called stride) of the surface, in number of bytes.
HeightThe height of the surface, in number of pixels.
WidthThe width of the surface, in number of pixels.
FormatA DXGI_FORMAT structure that identifies the format of the surface pixel.
pBufferPointer in system memory to the surface buffer. pBuffer must be at least 16-byte aligned.
IDARG_OUT_RELEASEANDACQUIRESYSTEMBUFFER
IddCxSwapChainReleaseAndAcquireSystemBuffer