IDDCX_SYSTEM_BUFFER_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-iddcx-iddcx_system_buffer_info)

Description

IDDCX_SYSTEM_BUFFER_INFO holds the resulting buffer-specific information after a buffer release and acquire operation.

Members

Size

Size of this structure, in bytes.

Pitch

The pitch (also called stride) of the surface, in number of bytes.

Height

The height of the surface, in number of pixels.

Width

The width of the surface, in number of pixels.

Format

A DXGI_FORMAT structure that identifies the format of the surface pixel.

pBuffer

Pointer in system memory to the surface buffer. pBuffer must be at least 16-byte aligned.

Remarks

See also

IDARG_OUT_RELEASEANDACQUIRESYSTEMBUFFER

IddCxSwapChainReleaseAndAcquireSystemBuffer