> ## 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_RANGE

> 메모리 범위를 설명합니다.

메모리 범위를 설명합니다.

## 구문

```cpp theme={null}
typedef struct D3D12_RANGE
{
    SIZE_T Begin;
    SIZE_T End;
} D3D12_RANGE
```

### 멤버

*Begin*\
형식: SIZE\_T

메모리 범위의 시작을 나타내는 오프셋(바이트)입니다.

*End*\
형식: SIZE\_T

메모리 범위의 끝을 나타내는 오프셋(바이트)입니다.
**End**는 끝의 다음 위치입니다(one-past-the-end).

## 설명

**End**는 끝의 다음 위치입니다(one-past-the-end).
**Begin**이 **End**와 같을 때 범위는 비어 있습니다.
범위의 크기는 (**End** - **Begin**)입니다.

이 구조체는 [Map](/reference/graphics/d3d12/interfaces/id3d12resource/methods/id3d12resource_map_public)과 [Unmap](/reference/graphics/d3d12/interfaces/id3d12resource/methods/id3d12resource_unmap_public) 메서드에서 사용됩니다.

## 요구 사항

**헤더:** d3d12\_xs.h 또는 d3d12\_x.h\
**라이브러리:** d3d12\_xs.lib 또는 d3d12\_x.lib\
**지원 플랫폼**: XBOX Series 콘솔 및 XBOX One 제품군

## 함께 보기

[CD3DX12\_RANGE](https://learn.microsoft.com/en-us/windows/desktop/direct3d12/cd3dx12-range)

[핵심 구조체](https://learn.microsoft.com/en-us/windows/desktop/direct3d12/direct3d-12-structures)


## Related topics

- [Unmap](/ko/reference/graphics/d3d12/interfaces/id3d12resource/methods/id3d12resource_unmap_public.md)
- [Map](/ko/reference/graphics/d3d12/interfaces/id3d12resource/methods/id3d12resource_map_public.md)
- [D3D12_RANGE_UINT64](/ko/reference/graphics/d3d12/structs/d3d12_range_uint64_public.md)
- [D3D12_SUBRESOURCE_RANGE_UINT64](/ko/reference/graphics/d3d12/structs/d3d12_subresource_range_uint64_public.md)
- [D3D12_DESCRIPTOR_RANGE](/ko/reference/graphics/d3d12/structs/d3d12_descriptor_range_public.md)
