]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/blob - libkms++/videomode.h
add ExtFramebuffer ctr for fds
[android/external-libkmsxx.git] / libkms++ / videomode.h
1 #pragma once
3 namespace kms
4 {
6 struct Videomode
7 {
8         uint32_t clock;
9         uint16_t hdisplay, hsync_start, hsync_end, htotal, hskew;
10         uint16_t vdisplay, vsync_start, vsync_end, vtotal, vscan;
12         uint32_t vrefresh;
14         uint32_t flags;         // DRM_MODE_FLAG_*
15         uint32_t type;          // DRM_MODE_TYPE_*
17         std::string name;
18 };
20 }