D3D12DDI_RAYTRACING_GEOMETRY_DESC_0054 - NtDoc

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

typedef struct D3D12DDI_RAYTRACING_GEOMETRY_DESC_0054 {
  D3D12DDI_RAYTRACING_GEOMETRY_TYPE  Type;
  D3D12DDI_RAYTRACING_GEOMETRY_FLAGS Flags;
  union {
    D3D12DDI_RAYTRACING_GEOMETRY_TRIANGLES_DESC_0054 Triangles;
    D3D12DDI_RAYTRACING_GEOMETRY_AABBS_DESC_0054     AABBs;
  };
} D3D12DDI_RAYTRACING_GEOMETRY_DESC_0054;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d12umddi-d3d12ddi_raytracing_geometry_desc_0054)

D3D12DDI_RAYTRACING_GEOMETRY_DESC_0054 structure

Description

Describes a ray tracing geometry.

Members

Type

A D3D12DDI_RAYTRACING_GEOMETRY_TYPE type.

Flags

A D3D12DDI_RAYTRACING_GEOMETRY_FLAGS flag.

Triangles

A D3D12DDI_RAYTRACING_GEOMETRY_TRIANGLES_DESC_0054 structure that describes a triangle geometry if Type is D3D12DDI_RAYTRACING_GEOMETRY_TYPE_TRIANGLES. Otherwise, this parameter is unused.

AABBs

A D3D12DDI_RAYTRACING_GEOMETRY_AABBS_DESC_0054 structure that describes an AABB (axis-aligned bounding box) geometry if Type is D3D12DDI_RAYTRACING_GEOMETRY_TYPE_PROCEDURAL_PRIMITIVE_AABBS. Otherwise, this parameter is unused.

Remarks

See also