ecore-drm: Add width & height to Ecore_Drm_Fb structure

Summary: This adds a w & h field to the Ecore_Drm_Fb structure so it
can be used from within the Evas engine

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-04-07 10:49:45 -04:00 committed by Stefan Schmidt
parent e72e1e1751
commit 318f2c435a
2 changed files with 8 additions and 5 deletions

View File

@ -61,6 +61,7 @@ typedef struct _Ecore_Drm_Fb
unsigned int stride, size;
int fd;
void *mmap;
int w, h;
} Ecore_Drm_Fb;
struct _Ecore_Drm_Device

View File

@ -15,7 +15,7 @@
/* TODO: DOXY !! */
static Eina_Bool
_ecore_drm_fb_create2(int fd, int w, int h, Ecore_Drm_Fb *fb)
_ecore_drm_fb_create2(int fd, Ecore_Drm_Fb *fb)
{
struct drm_mode_fb_cmd2 cmd;
uint32_t hdls[4], pitches[4], offsets[4], fmt;
@ -31,8 +31,8 @@ _ecore_drm_fb_create2(int fd, int w, int h, Ecore_Drm_Fb *fb)
memset(&cmd, 0, sizeof(struct drm_mode_fb_cmd2));
cmd.fb_id = 0;
cmd.width = w;
cmd.height = h;
cmd.width = fb->w;
cmd.height = fb->h;
cmd.pixel_format = fmt;
cmd.flags = 0;
memcpy(cmd.handles, hdls, 4 * sizeof(hdls[0]));
@ -77,11 +77,13 @@ ecore_drm_fb_create(Ecore_Drm_Device *dev, int width, int height)
fb->stride = carg.pitch;
fb->size = carg.size;
fb->fd = dev->drm.fd;
fb->w = width;
fb->h = height;
if (!_ecore_drm_fb_create2(dev->drm.fd, width, height, fb))
if (!_ecore_drm_fb_create2(dev->drm.fd, fb))
{
WRN("Could not add framebuffer2: %m");
if (drmModeAddFB(dev->drm.fd, width, height, 24, 32,
if (drmModeAddFB(dev->drm.fd, fb->w, fb->h, 24, 32,
fb->stride, fb->hdl, &fb->id))
{
ERR("Could not add framebuffer: %m");