blob: 43c7afcf2bc925c2a0c62525a1012d98eba01039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <cstdint>
#include "videomode.h"
namespace kms
{
struct Videomode;
extern const Videomode dmt_modes[];
extern const Videomode cea_modes[];
const Videomode& find_dmt(uint32_t width, uint32_t height, uint32_t vrefresh, bool ilace);
const Videomode& find_cea(uint32_t width, uint32_t height, uint32_t refresh, bool ilace);
}
|