Files
rk35xx-android14/external/igt-gpu-tools/TODO.rst
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

32 lines
1.0 KiB
ReStructuredText

TODO
====
This contains a list of refactoring, cleanup and getting-started tasks around
the IGT library.
Split up igt_kms.c/igt_kms.h
----------------------------
igt_kms contains both a low-level modeset library, with thin convenience
wrappers around core kernel code and libdrm. These functions usually have a
drmtest_ prefix (but not all of them).
The other part is a higher-level library around the igt_display and related
structures. Those usually come with an igt_ prefix.
The task would be to split this up, and where necessary, fix up the prefixes to
match the level a function operates at.
Remove property enums from igt_kms
----------------------------------
These are just needless indirection for writing tests. We can keep the #defines
(since those strings are defacto uapi), but everything else is best handled by
runtime-sizing all the arrays.
Documentation
-------------
igt documentation is full of warnings and fairly incomplete. Pick a library, and
work together with its authors to fix things up.