ecore-drm: Add edid structure to Ecore_Drm_Output

Summary: This adds an edid substructure to Ecore_Drm_Output so that
when we parse out EDID information, we have a place to store it

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-03-04 14:52:04 -05:00
parent da80ee8cc2
commit 02e7931aeb
1 changed files with 9 additions and 1 deletions

View File

@ -116,7 +116,7 @@ struct _Ecore_Drm_Output
drmModeCrtcPtr crtc;
Eeze_Udev_Watch *watch;
int x, y;
int x, y, phys_width, phys_height;
int drm_fd;
Eina_Bool need_repaint : 1;
@ -131,6 +131,14 @@ struct _Ecore_Drm_Output
Ecore_Drm_Output_Mode *current_mode;
Eina_List *modes;
struct
{
char eisa[13];
char monitor[13];
char pnp[5];
char serial[13];
} edid;
Ecore_Drm_Fb *current, *next;
Ecore_Drm_Fb *dumb[NUM_FRAME_BUFFERS];
Ecore_Drm_Backlight *backlight;