<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - glDrawArrays does not take the "first" argument into account"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=103332#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - glDrawArrays does not take the "first" argument into account"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=103332">bug 103332</a>
              from <span class="vcard"><a class="email" href="mailto:laurent.renard@int.com" title="Laurent Renard <laurent.renard@int.com>"> <span class="fn">Laurent Renard</span></a>
</span></b>
        <pre>I have tested with modified version of the tutorial found here :
<a href="http://www.opengl-tutorial.org/beginners-tutorials/tutorial-5-a-textured-cube/">http://www.opengl-tutorial.org/beginners-tutorials/tutorial-5-a-textured-cube/</a>

Modifying the command 
// Draw the triangle !
glDrawArrays(GL_TRIANGLES, 0, 12*3); // 12*3 indices starting at 0 -> 12
triangles

By :
// Draw the triangle !
for (int c = 0 ; c < 12 ; c ++){
   glDrawArrays(GL_TRIANGLES, c * 3, 3); // 12*3 indices starting at 0 -> 12
triangles
}

does not show the issue.

I will try to go deeper and see where the issue is. (My code, JOGL or OpenSWR)</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>