[EFL][Multi screen] separate profile factor.
authorJaehwan Kim <jae.hwan.kim@samsung.com>
Fri, 31 Jul 2015 08:03:07 +0000 (17:03 +0900)
committerJaehwan Kim <jae.hwan.kim@samsung.com>
Fri, 31 Jul 2015 08:07:02 +0000 (17:07 +0900)
Change-Id: I7605a4e3c30d2f42b64c92607165bf01659e607c
Signed-off-by: Jaehwan Kim <jae.hwan.kim@samsung.com>
org.tizen.ui.guides/html/native/efl/multiple_screens_n.htm

index 9fe2826..5a93e29 100755 (executable)
 </tr>
 </tbody>
 </table>
-
-  <p>You must declare the following values as base scale:</p>
-  <ul>
-       <li>WVGA: 1.8</li>
-       <li>HD: 2.4</li>
-</ul>
-  
-  
   
   <h2 id="apply" name="apply">Applying the Base Scale</h2> 
   <p>To create an application that supports multiple screen sizes, you must learn how to set the base scale in:</p> 
@@ -120,8 +112,12 @@ base_scale = (DPI / 90) * profile_factor</pre>
  <td>0.4</td>
  </tr>
  <tr>
- <td>Mobile</td>
+ <td>Mobile - Small Screen (~ 4.4 inch)</td>
  <td>0.7</td>
+ </tr>
+ <tr>
+ <td>Mobile - Normal Screen (4.5 inch ~)</td>
+ <td>0.8</td>
  </tr> 
  <tr>
  <td>Desktop</td>
@@ -129,7 +125,7 @@ base_scale = (DPI / 90) * profile_factor</pre>
  </tr>
  </tbody></table>
 
-<p>For example, if your display has 233 dpi and the platform uses the mobile profile, the base scale is calculated like this:</p>
+<p>For example, if your display has 233 dpi and the platform uses the mobile profile(small screen), the base scale is calculated like this:</p>
 <pre class="prettyprint">
 1.8 = (233 / 90) * 0.7</pre>
 
@@ -206,32 +202,32 @@ Real physical pixel = (a pixel before scaling) x (dpi / 90) x 0.7
 <tr>
  <th></th>
  <th>Base</th>
- <th>Low-density device (such as WVGA)</th>
- <th>High-density device (such as HD)</th>
+ <th>Low-density device (such as WVGA, 4 inch)</th>
+ <th>High-density device (such as HD, 5 inch)</th>
 </tr>
  <tr>
  <td>DPI</td>
  <td>129</td>
  <td>233</td>
- <td>306</td> 
+ <td>294</td>
  </tr>
  <tr>
  <td>A pixel before scaling</td>
  <td>100</td>
  <td>100</td>
- <td>100</td> 
+ <td>100</td>
  </tr>
  <tr>
  <td>Real physical pixel</td>
  <td>100</td>
  <td>180</td>
- <td>240</td> 
+ <td>260</td>
  </tr>
  <tr>
  <td>Actual base scale</td>
  <td>1.0</td>
  <td>1.8</td>
- <td>2.4</td> 
+ <td>2.6</td>
  </tr> 
  </tbody></table>
 
@@ -258,4 +254,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>