Previous 199869 Revisions Next

r32856 Tuesday 21st October, 2014 at 13:09:32 UTC by Oliver Stöneberg
only calculate m_aspect and m_srcaspect in layout_view::recompute() when they are actually used (nw)
[src/emu]rendlay.c

trunk/src/emu/rendlay.c
r241367r241368
21902190   if (m_expbounds.x1 > m_expbounds.x0)
21912191      m_bounds = m_expbounds;
21922192
2193   // compute the aspect ratio of the view
2194   m_aspect = (m_bounds.x1 - m_bounds.x0) / (m_bounds.y1 - m_bounds.y0);
2195   m_scraspect = (m_scrbounds.x1 - m_scrbounds.x0) / (m_scrbounds.y1 - m_scrbounds.y0);
2196
21972193   // if we're handling things normally, the target bounds are (0,0)-(1,1)
21982194   render_bounds target_bounds;
21992195   if (!layerconfig.zoom_to_screen() || m_screens.count() == 0)
22002196   {
2197      // compute the aspect ratio of the view
2198      m_aspect = (m_bounds.x1 - m_bounds.x0) / (m_bounds.y1 - m_bounds.y0);
2199
22012200      target_bounds.x0 = target_bounds.y0 = 0.0f;
22022201      target_bounds.x1 = target_bounds.y1 = 1.0f;
22032202   }
r241367r241368
22052204   // if we're cropping, we want the screen area to fill (0,0)-(1,1)
22062205   else
22072206   {
2207      // compute the aspect ratio of the screen
2208      m_scraspect = (m_scrbounds.x1 - m_scrbounds.x0) / (m_scrbounds.y1 - m_scrbounds.y0);
2209
22082210      float targwidth = (m_bounds.x1 - m_bounds.x0) / (m_scrbounds.x1 - m_scrbounds.x0);
22092211      float targheight = (m_bounds.y1 - m_bounds.y0) / (m_scrbounds.y1 - m_scrbounds.y0);
22102212      target_bounds.x0 = (m_bounds.x0 - m_scrbounds.x0) / (m_bounds.x1 - m_bounds.x0) * targwidth;


Previous 199869 Revisions Next


© 1997-2024 The MAME Team