Previous 199869 Revisions Next

r32906 Thursday 23rd October, 2014 at 13:32:31 UTC by Oliver Stöneberg
only normalize component bounds in layout_element::layout_element() when components exist (nw)

avoids division by zero for sets using src/emu/layout/vertical.lay
[src/emu]rendlay.c

trunk/src/emu/rendlay.c
r241417r241418
452452         m_maxstate = 65536;
453453   }
454454
455   // determine the scale/offset for normalization
456   float xoffs = bounds.x0;
457   float yoffs = bounds.y0;
458   float xscale = 1.0f / (bounds.x1 - bounds.x0);
459   float yscale = 1.0f / (bounds.y1 - bounds.y0);
455   if (m_complist.first() != NULL)
456   {
457      // determine the scale/offset for normalization
458      float xoffs = bounds.x0;
459      float yoffs = bounds.y0;
460      float xscale = 1.0f / (bounds.x1 - bounds.x0);
461      float yscale = 1.0f / (bounds.y1 - bounds.y0);
460462
461   // normalize all the component bounds
462   for (component *curcomp = m_complist.first(); curcomp != NULL; curcomp = curcomp->next())
463   {
464      curcomp->m_bounds.x0 = (curcomp->m_bounds.x0 - xoffs) * xscale;
465      curcomp->m_bounds.x1 = (curcomp->m_bounds.x1 - xoffs) * xscale;
466      curcomp->m_bounds.y0 = (curcomp->m_bounds.y0 - yoffs) * yscale;
467      curcomp->m_bounds.y1 = (curcomp->m_bounds.y1 - yoffs) * yscale;
463      // normalize all the component bounds
464      for (component *curcomp = m_complist.first(); curcomp != NULL; curcomp = curcomp->next())
465      {
466         curcomp->m_bounds.x0 = (curcomp->m_bounds.x0 - xoffs) * xscale;
467         curcomp->m_bounds.x1 = (curcomp->m_bounds.x1 - xoffs) * xscale;
468         curcomp->m_bounds.y0 = (curcomp->m_bounds.y0 - yoffs) * yscale;
469         curcomp->m_bounds.y1 = (curcomp->m_bounds.y1 - yoffs) * yscale;
470      }
468471   }
469472
470473   // allocate an array of element textures for the states


Previous 199869 Revisions Next


© 1997-2024 The MAME Team