> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# D3D12_ROOT_SIGNATURE_DESC1

> Describes the layout of a root signature version 1.1.

Describes the layout of a root signature version 1.1.

## Syntax

```cpp theme={null}
typedef struct D3D12_ROOT_SIGNATURE_DESC1
{
    UINT NumParameters;
    const D3D12_ROOT_PARAMETER1  pParameters;
    UINT NumStaticSamplers;
    const D3D12_STATIC_SAMPLER_DESC  pStaticSamplers;
    D3D12_ROOT_SIGNATURE_FLAGS Flags;
} D3D12_ROOT_SIGNATURE_DESC1
```

### Members

*NumParameters*\
Type: UINT

The number of slots in the root signature. This number is also the number of elements in the <i>pParameters</i> array.

*pParameters*\
Type: const D3D12\_ROOT\_PARAMETER1 \*

An array of [D3D12\_ROOT\_PARAMETER1](/reference/graphics/d3d12/structs/d3d12_root_parameter1_public) structures for the slots in the root signature.

*NumStaticSamplers*\
Type: UINT

Specifies the number of static samplers.

*pStaticSamplers*\
Type: const D3D12\_STATIC\_SAMPLER\_DESC \*

Pointer to one or more [D3D12\_STATIC\_SAMPLER\_DESC](/reference/graphics/d3d12/structs/d3d12_static_sampler_desc_public) structures.

*Flags*\
Type: D3D12\_ROOT\_SIGNATURE\_FLAGS

Specifies the [D3D12\_ROOT\_SIGNATURE\_FLAGS](/reference/graphics/d3d12_xs/enums/d3d12_root_signature_flags_xs) that determine the data volatility.

## Remarks

Use this structure with the [D3D12\_VERSIONED\_ROOT\_SIGNATURE\_DESC](/reference/graphics/d3d12/structs/d3d12_versioned_root_signature_desc_public) structure.

## Requirements

**Header:** d3d12\_xs.h or d3d12\_x.h\
**Library:** d3d12\_xs.lib or d3d12\_x.lib\
**Supported Platforms**: XBOX Series consoles and XBOX One family

## See Also

[Core Structures](https://learn.microsoft.com/en-us/windows/desktop/direct3d12/direct3d-12-structures)

[D3D12\_ROOT\_SIGNATURE\_DESC](/reference/graphics/d3d12/structs/d3d12_root_signature_desc_public)

[Root Signature Version 1.1](https://learn.microsoft.com/en-us/windows/desktop/direct3d12/root-signature-version-1-1)


## Related topics

- [D3D12_VERSIONED_ROOT_SIGNATURE_DESC](/reference/graphics/d3d12/structs/d3d12_versioned_root_signature_desc_public.md)
- [D3D12_ROOT_SIGNATURE_DESC](/reference/graphics/d3d12/structs/d3d12_root_signature_desc_public.md)
- [ID3D12VersionedRootSignatureDeserializer](/reference/graphics/d3d12/interfaces/id3d12versionedrootsignaturedeserializer/id3d12versionedrootsignaturedeserializer_public.md)
- [D3D12_ROOT_PARAMETER1](/reference/graphics/d3d12/structs/d3d12_root_parameter1_public.md)
- [D3D12CreateVersionedRootSignatureDeserializer](/reference/graphics/d3d12/functions/d3d12createversionedrootsignaturedeserializer_public.md)
