I'm developing a web component using WebGL2 (and three.js) with OES_element_index_uint enabled. I'm drawing a geometry using indexed vertices and I'm seeing the following anomaly -- look for the lines going across the middle of the figure:
If I redraw the figure I get something slightly different even if I don't change the inputs (I think).
I've made debug code to double check the buffers I'm passing in to the geometry and I don't find any problem. I also haven't noticed anything like this using the same implementation with smaller data sets (yet).
I looked at this webgl2 report site https://alteredqualia.com/tools/webgl-features/ and I notice the lines:
Max elements vertices: 1048575
Max elements indices: 150000
Could this be the cause of the anomaly because my buffers are bigger than that? Where are these numbers explained?
I'm working on a Mac Laptop with the GPU reported as
Unmasked renderer: AMD Radeon Pro 560X OpenGL Engine
Unmasked vendor: ATI Technologies Inc.
Any clues as to what is going on or explanations about max elements indices/vertices would be much appreciated. Thanks in advance.
To draw an object using
drawElements
WebGL2 allows you to define indices of data typegl.UNSIGNED_INT
up to 4294967296. You have to pass aUint32Array
array:new Uint32Array(indices)
to your created and binded index buffer:In
drawElements
passgl.UNSIGNED_UINT
as index type:With THREE.js in
setIndex
for your Buffer Geometry :