ecore-xcb: Add implementation for missing Ecore_X API

This patch adds an xcb implementation for ecore_x_randr_edid_model_get
function which was missing from ecore-xcb.

@fix

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-04-05 09:18:10 -04:00
parent 6ce9ab87e8
commit 66b8698be2
1 changed files with 6 additions and 0 deletions

View File

@ -3066,6 +3066,12 @@ ecore_x_randr_edid_manufacturer_model_get(unsigned char *edid, unsigned long edi
return ECORE_X_RANDR_EDID_UKNOWN_VALUE;
}
EAPI int
ecore_x_randr_edid_model_get(unsigned char *edid, unsigned long edid_length)
{
return ecore_x_randr_edid_manufacturer_model_get(edid, edid_length);
}
/* local functions */
static Eina_Bool
_ecore_xcb_randr_output_validate(Ecore_X_Window root,