D3D12_LIBRARY_DESC structure (d3d12shader.h)

Describes a library.

Syntax

typedef struct _D3D12_LIBRARY_DESC {
  LPCSTR Creator;
  UINT   Flags;
  UINT   FunctionCount;
} D3D12_LIBRARY_DESC;

Members

Creator

The name of the originator of the library.

Flags

A combination of D3DCOMPILE Constants that are combined by using a bitwise OR operation. The resulting value specifies how the compiler compiles.

FunctionCount

The number of functions exported from the library.

Remarks

This structure is returned by ID3D12LibraryReflection::GetDesc.

Requirements

Requirement Value
Header d3d12shader.h

See also

ID3D12LibraryReflection::GetDesc

Shader Structures