Add APIs which can get information of display and area
authorYuta Doi <yuta-d@witz-inc.co.jp>
Mon, 11 Dec 2017 02:38:01 +0000 (11:38 +0900)
committerYuta Doi <yuta-d@witz-inc.co.jp>
Mon, 11 Dec 2017 02:38:01 +0000 (11:38 +0900)
getDisplayInfo() can get the display information as follows:
 - width[pixel]
 - height[pixel]
 - width[mm]
 - height[mm]

  NOTE:
    It uses wl_output::geometry() for getting physical width[mm] and height[mm] of the display,
    but the value is different with measured value.

    value from wl_output::geometry(): width:320 height:520
    measured value                  : width:193 height:343

getAreaInfo() can get the information of area drawn by the application as follows:
 - x-coordinate
 - y-coordinate
 - width
 - height

The details are described in doc/ApplicationGuide.md.

Change-Id: I41eec6251527862ef25d1b84cd37d736d3f9c8aa
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>

No differences found