~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/normalopenglgraphics.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-07-11 10:09:41 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130711100941-f0rwuvcwgl8ulqo8
Tags: 1.3.7.7.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
651
651
 
652
652
        for (iv = intVertPool.begin(), ft = floatTexPool.begin(),
653
653
             ivp = vp.begin();
654
 
             iv != iv_end, ft != ft_end,
655
 
             ivp != ivp_end;
 
654
             iv != iv_end && ft != ft_end && ivp != ivp_end;
656
655
             ++ iv, ++ ft, ++ ivp)
657
656
        {
658
657
            drawQuadArrayfi(*iv, *ft, *ivp);
666
665
 
667
666
        for (iv = intVertPool.begin(), it = intTexPool.begin(),
668
667
             ivp = vp.begin();
669
 
             iv != iv_end, it != it_end,
670
 
             ivp != ivp_end;
 
668
             iv != iv_end && it != it_end && ivp != ivp_end;
671
669
             ++ iv, ++ it, ++ ivp)
672
670
        {
673
671
            drawQuadArrayii(*iv, *it, *ivp);