xref: /aosp_15_r20/external/libkmsxx/kms++/inc/kms++/modedb.h (revision f0687c8a10b3e371dbe09214db6664e37c283cca)
1 #pragma once
2 
3 #include <cstdint>
4 #include "videomode.h"
5 
6 namespace kms
7 {
8 struct Videomode;
9 
10 extern const Videomode dmt_modes[];
11 extern const Videomode cea_modes[];
12 
13 const Videomode& find_dmt(uint32_t width, uint32_t height, float vrefresh, bool ilace);
14 const Videomode& find_cea(uint32_t width, uint32_t height, float vrefresh, bool ilace);
15 
16 } // namespace kms
17