e_comp_wl: fix unit of wl_output's refresh value to be mHz 29/49629/1 accepted/tizen/mobile/20151017.101124 accepted/tizen/tv/20151017.101353 accepted/tizen/wearable/20151017.101801 submit/tizen/20151016.044438 tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
authorGwanglim Lee <gl77.lee@samsung.com>
Fri, 16 Oct 2015 04:28:53 +0000 (13:28 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Fri, 16 Oct 2015 04:28:53 +0000 (13:28 +0900)
Change-Id: I3a592f1c079b56341a8072bacd97ecabb351f20a

src/bin/e_comp_wl.c

index e17be3e..6f6e04b 100644 (file)
@@ -4066,7 +4066,7 @@ _e_comp_wl_output_get(Eina_List *outputs, const char *id)
  * @param h          output's height in pixels
  * @param pw         output's physical width in millimeters
  * @param ph         output's physical height in millimeters
- * @param refresh    output's refresh rate in Hz
+ * @param refresh    output's refresh rate in mHz
  * @param subpixel   output's subpixel layout
  * @param transform  output's rotation and/or mirror transformation
  */
@@ -4110,7 +4110,7 @@ e_comp_wl_output_init(const char *id, const char *make, const char *model, int x
    output->h = h;
    output->phys_width = pw;
    output->phys_height = ph;
-   output->refresh = refresh * 1000;
+   output->refresh = refresh;
    output->subpixel = subpixel;
    output->transform = transform;