ecore-drm: Remove per-output framebuffers

Summary: No real need for each output to have its own framebuffers as
we can just create dumb buffers in the drm device structure

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-04-07 14:05:10 -04:00 committed by Stefan Schmidt
parent 53002d385e
commit 2b554161fe
1 changed files with 2 additions and 2 deletions

View File

@ -82,6 +82,8 @@ extern int _ecore_drm_log_dom;
# define WRN(...) EINA_LOG_DOM_WARN(_ecore_drm_log_dom, __VA_ARGS__)
# define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_drm_log_dom, __VA_ARGS__)
# define ALEN(array) (sizeof(array) / sizeof(array)[0])
struct _Ecore_Drm_Output_Mode
{
unsigned int flags;
@ -133,8 +135,6 @@ struct _Ecore_Drm_Output
char serial[13];
} edid;
Ecore_Drm_Fb *current, *next;
Ecore_Drm_Fb *dumb[NUM_FRAME_BUFFERS];
Ecore_Drm_Backlight *backlight;
Eina_Bool enabled : 1;