D3DKMT_GET_PTE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmthk.h

typedef struct _D3DKMT_GET_PTE {
  UINT     PhysicalAdapterIndex;
  UINT     PageTableLevel;
  UINT     PageTableIndex[DXGK_MAX_PAGE_TABLE_LEVEL_COUNT];
  BOOLEAN  b64KBPte;
  UINT     NumPtes;
  DXGK_PTE Pte[D3DKMT_GET_PTE_MAX];
  UINT     NumValidEntries;
} D3DKMT_GET_PTE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmthk-_d3dkmt_get_pte)

_D3DKMT_GET_PTE structure

Description

Used to get page table entries (PTE).

Members

PhysicalAdapterIndex

The physical adapter index in the LDA (linked display adapter) chain.

PageTableLevel

The page table level.

PageTableIndex

The page table index.

b64KBPte

Indicates whether the page table is 64KB. This value is valid only when dual PTEs are supported.

NumPtes

The number of PTEs to fill.

Pte

An array of PTEs.

NumValidEntries

The number of valid entries.

Remarks

See also