1
0
Fork 0
No description
Find a file
Tim Van Patten 254b33c19f Add .gitignore
Add .gitignore file, so git commands ignore the following:

* .out/ (Build directory)
* .vscode/ (Visual Studio Code)
* .idea/ (Intellij)

Signed-off-by: Tim Van Patten <timvp@google.com>
2024-10-14 12:32:10 -06:00
.ci drm_hwcomposer: Use hwc3 version 3 2024-09-13 10:32:43 -06:00
backend drm_hwcomposer: Extract DrmHwc abstract base class 2024-08-12 12:27:10 -06:00
bufferinfo drm_hwcomposer: Replace LOG_TAG with drmhwc 2024-07-19 17:42:41 +00:00
compositor drm_hwcomposer: Disable flattening controller at instance creation time 2024-08-30 22:15:14 +00:00
drm drm_hwcomposer: Calculate vsync period consistently 2024-10-08 09:36:41 -06:00
hwc2_device drm_hwcomposer: Calculate vsync period consistently 2024-10-08 09:36:41 -06:00
hwc3 drm_hwcomposer: Calculate vsync period consistently 2024-10-08 09:36:41 -06:00
tests drm_hwcomposer: Remove hardcoded PAGE_SIZE usage in gralloc_helper 2024-03-27 14:00:10 -07:00
utils drm_hwcomposer: Stop UEvent thread in ResourceManager destructor 2024-08-30 22:15:14 +00:00
.clang-format drm_hwcomposer: Update clang-format to 5.0 2018-08-27 13:38:45 -04:00
.clang-tidy drm_hwcomposer: CI: Use aospext to provide headers for clang-tidy 2023-11-21 18:50:58 +02:00
.gitignore Add .gitignore 2024-10-14 12:32:10 -06:00
.gitlab-ci.yml drm_hwcomposer: CI: Use upstream container image conditionally 2024-10-11 17:08:43 +02:00
Android.bp Support drm hwcomposer as an apex 2024-09-19 12:20:52 -07:00
Makefile drm_hwcomposer: CI: Use aospext to provide headers for clang-tidy 2023-11-21 18:50:58 +02:00
meson.build drm_hwcomposer: Connect ComposerClient with HwcDisplay 2024-08-30 22:15:14 +00:00
MODULE_LICENSE_APACHE2 drm_hwcomposer: License NOTICE file and metadata from AOSP 2018-05-04 10:46:10 -07:00
NOTICE drm_hwcomposer: License NOTICE file and metadata from AOSP 2018-05-04 10:46:10 -07:00
README.md drm_hwcomposer: CI: Bump-up clang toolchain to v15 2022-10-20 14:14:33 +03:00

drm_hwcomposer

Patches to drm_hwcomposer are very much welcome, we really want this to be the universal HW composer implementation for Android and similar platforms. So please bring on porting patches, bugfixes, improvements for documentation and new features.

A short list of contribution guidelines:

  • Submit changes via gitlab merge requests on gitlab.freedesktop.org.

  • drm_hwcomposer is Apache 2.0 Licensed and we require contributions to follow the developer's certificate of origin: http://developercertificate.org/.

  • When submitting new code please follow the naming conventions documented in the generated documentation. Also please make full use of all the helpers and convenience macros provided by drm_hwcomposer. The below command can help you with formatting of your patches:

    git diff | clang-format-diff-15 -p 1 -style=file
    
  • Hardware specific changes should be tested on relevant platforms before committing.

If you need inspiration, please checkout our TODO issues.

Happy hacking!