1# OH_NativeBuffer_Planes
2
3
4## Overview
5
6The OH_NativeBuffer_Planes struct describes the plane information of images in an **OH_NativeBuffer** instance.
7
8**System capability**: SystemCapability.Graphic.Graphic2D.NativeBuffer
9
10**Since**: 12
11
12**Related module**: [OH_NativeBuffer](_o_h___native_buffer.md)
13
14
15## Summary
16
17
18### Member Variables
19
20| Name| Description|
21| -------- | -------- |
22| uint32_t [planeCount](#planecount) | Number of planes.|
23| [OH_NativeBuffer_Plane](_o_h___native_buffer___plane.md) [planes](#planes) [4] | Array holding the plane information of each image.|
24
25
26## Member Variable Description
27
28
29### planeCount
30
31```
32uint32_t OH_NativeBuffer_Planes::planeCount
33```
34
35**Description**
36
37Number of planes.
38
39
40### planes
41
42```
43OH_NativeBuffer_Plane OH_NativeBuffer_Planes::planes[4]
44```
45
46**Description**
47
48Array holding the plane information of each image.
49