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