• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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**Header file**: [native_buffer.h](native__buffer_8h.md)
15
16## Summary
17
18
19### Member Variables
20
21| Name| Description|
22| -------- | -------- |
23| uint32_t [planeCount](#planecount) | Number of planes.|
24| [OH_NativeBuffer_Plane](_o_h___native_buffer___plane.md) [planes](#planes) [4] | Array holding the plane information of each image.|
25
26
27## Member Variable Description
28
29
30### planeCount
31
32```
33uint32_t OH_NativeBuffer_Planes::planeCount
34```
35
36**Description**
37
38Number of planes.
39
40
41### planes
42
43```
44OH_NativeBuffer_Plane OH_NativeBuffer_Planes::planes[4]
45```
46
47**Description**
48
49Array holding the plane information of each image.
50