Go to file
Ilya Tihobaev 2bbfd51b92 Fixed arkui-x build due to missed adapters
Signed-off-by: Ilya Tihobaev <tihobaev.ilya@huawei-partners.com>
Change-Id: Ic83d408ec93ce2a393686c1294fd1ab2e51227a2
2024-05-30 15:13:54 +03:00
.gitee add Commit Message 2024-04-19 17:13:49 +08:00
adapter Corrected copyright 2024-05-06 11:09:43 +03:00
etc Adding files for beta-recording 2024-05-17 14:37:55 +03:00
figures update graphic architecture in README_zh.md 2022-02-28 14:30:36 +08:00
frameworks !11329 Swapchain增加维测日志和trace 2024-05-23 03:21:10 +00:00
interfaces !11395 Drawing接口crash bugfix 2024-05-23 10:37:37 +00:00
rosen !11335 切帧时计算的nextVsyncTime时间戳不能提前 2024-05-23 11:19:21 +00:00
utils !11034 Fix libgl componentization issues 2024-05-20 12:22:14 +00:00
.clang-format rename and refactor 2024-03-04 15:55:16 +08:00
.gitattributes update OpenHarmony 2.0 Canary 2021-06-02 02:21:18 +08:00
ace_platforms.gni Fixed arkui-x build due to missed adapters 2024-05-30 15:13:54 +03:00
BUILD.gn Fix libgl componentization issues 2024-05-17 11:45:45 +03:00
bundle.json revert add UIEffect 2024-05-22 15:22:44 +08:00
CODEOWNERS 渲染服务code码访问权限校验与管控(part11) 2023-08-30 16:46:20 +08:00
copy_arkui_adapters.py Fixed arkui-x build due to missed adapters 2024-05-30 15:13:54 +03:00
default.scss add window type 2021-12-21 21:12:04 +08:00
flutter.gni Description:change dir graphic/graphic to graphic/graphic_2d 2022-05-19 14:59:57 +08:00
graphic_config.gni Fixed arkui-x build due to missed adapters 2024-05-30 15:13:54 +03:00
graphic.cfg 修改文件权限配置 2024-05-22 11:21:41 +08:00
graphic.rc 回退 'Pull Request !3058 : del unused code' 2022-11-24 06:23:33 +00:00
hisysevent.yaml RS超节点数上报 2024-04-28 20:49:12 +08:00
LICENSE update OpenHarmony 2.0 Canary 2021-06-02 02:21:18 +08:00
OAT.xml fix bootanimation oat warnning 2024-03-06 16:28:31 +08:00
README_zh.md fix name 2023-07-11 21:55:33 +08:00
README.md quduoyu 2023-05-17 19:00:42 +08:00

graphic_graphic_2d

Introduction

Graphic subsystem provides graphical interface capabilities.

Its main structure is shown in the following figure:

Graphic subsystem architecture diagram

The layered description of the OpenHarmony graphics stack is as follows:

• Interface layer: Provides native API capabilities for graphics, including: WebGL, Native Drawing drawing capabilities, OpenGL instruction-level drawing capabilities support, etc.

• Framework layer: divided into five modules: Render Service, Drawing, Animation, Effect, Display and Memory Management.

Module Capability Description
Render Servicel Provides the rendering capabilities of the UI framework. Its core responsibility is to convert ArkUI's control description into drawing tree information, and perform optimal path rendering according to the corresponding rendering strategy. At the same time, it is responsible for the core underlying mechanism of UI sharing in multi-window smoothness and spatial state.
Drawing Provides a standardized interface within the graphics subsystem, and mainly completes basic functions such as 2D rendering, 3D rendering and rendering engine management.
Animation Provides related capabilities of the animation engine.
Effect Mainly completes the ability to process image effects, rendering effects and other effects, including: multi-effect series and parallel processing, adding rendering effects, control interaction effects and other related capabilities during layout.
Display and Memory Management This module is the main module for the decoupling of the graphics stack and hardware. It mainly defines the display and memory management capabilities of OpenHarmony. The defined southbound HDI interface requires different OEMs to complete the adaptation of the OpenHarmony graphics stack. match.

• Engine layer: includes two modules, 2D graphics library and 3D graphics engine. The 2D graphics library provides the underlying API for 2D graphics rendering, and supports the underlying capabilities of graphics rendering and text rendering. 3D graphics engine capabilities are still under construction.

content

foundataion/graphic/graphic_2d
├── figures                      # Markdown referenced image catalog
├── frameworks                   # framework code directory
│   ├── animation_server         # animationServer code
│   ├── bootanimation            # Boot animation directory
│   ├── fence                    # fence code
│   ├── vsync                    # Vsync code
├── rosen                        # framework code directory
│   ├── build                    # build instructions
│   ├── doc                      # doc
│   ├── include                  # external header file code
│   ├── lib                      # lib
│   ├── modules                  # graphic Each module code of the subsystem
│   ├── samples                  # sample code
│   ├── test                     # develop test code
│   ├── tools                    # tool code
├── interfaces                   # graphical interface storage directory
│   ├── innerkits                # internal native interface storage directory
│   └── kits                     # js/napi external interface storage directory
└── utils                        # widget storage directory

Repositories Involved