https://bugs.freedesktop.org/show_bug.cgi?id=103332
--- Comment #1 from Laurent Renard <[email protected]> ---
I have tested with modified version of the tutorial found here :
http://www.opengl-tutorial.org/beginners-tutorials/tutorial-5-a-textured-cube/
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)
--
You are receiving this mail because:
You are the assignee for the bug.
You are the QA Contact for the bug._______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev