---
title: MTLPixelFormat.gbgr422
framework: metal
role: symbol
role_heading: Case
path: metal/mtlpixelformat/gbgr422
---

# MTLPixelFormat.gbgr422

A pixel format where the red and green components are subsampled horizontally.

## Declaration

```swift
case gbgr422
```

## Discussion

Discussion Two pixels are stored in 32 bits, with shared red and blue values, and unique green values. The component arrangement is the same as it is in YUY2, YUYV, yuvs, and kYUVS pixel formats, except there is no implicit format conversion from a YUV to RGB color space. Only 2D non-mipmapped textures can be created with this pixel format, and the width needs to be a multiple of 2. Neither MTLTextureType.type2DArray nor MTLTextureType.typeCube textures are supported. This format is a compressed format with a block size of 2x1 in a 32-bit block. During sampling, the address mode needs to be set to MTLSamplerAddressMode.clampToEdge.

## See Also

### YUV pixel formats

- [MTLPixelFormat.bgrg422](metal/mtlpixelformat/bgrg422.md)
