]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/blob - libkms++/modedb.h
kmsprint: print plane formats
[android/external-libkmsxx.git] / libkms++ / modedb.h
1 #pragma once
3 #include <cstdint>
4 #include "videomode.h"
6 namespace kms
7 {
8 struct Videomode;
10 extern const Videomode dmt_modes[];
11 extern const Videomode cea_modes[];
13 const Videomode& find_dmt(uint32_t width, uint32_t height, uint32_t vrefresh, bool ilace);
14 const Videomode& find_cea(uint32_t width, uint32_t height, uint32_t refresh, bool ilace);
16 }