My problem is very simple, I build an array with the 2 square coord :
var vertices = [ -64, -32, 0.0,
64, -32, 0.0,
64, 32, 0.0,
-64, -32, 0.0,
-64, 32, 0.0,
64, 32, 0.0 ];
vertices.push( -64 + 200, -32, 0.0,
64 + 200, -32, 0.0,
64 + 200, 32, 0.0,
-64 + 200, -32, 0.0,
-64 + 200, 32, 0.0,
64 + 200, 32, 0.0 );
But the resulting drawing looks like :
Expected result should be 2 separate rect with black color between them. And I don't understand that behavior.