chore: Implement display initialization

This commit is contained in:
Tera << 8 2025-06-04 22:53:38 -04:00
parent 5adf93a9d3
commit 0fd3b21d6d
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
12 changed files with 501 additions and 20 deletions

8
libunreal/edid.py Normal file
View file

@ -0,0 +1,8 @@
import dataclasses
@dataclasses.dataclass
class EvdiDisplaySpec:
edid: bytes
max_width: int
max_height: int
max_refresh_rate: int