You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WebGL 1 spec does not define how the out-of-range indices behave with respect to start, end. E.g. if something else than "discard start, end" is ok behavior, then it's not clear what it is. If "discard start,end" is the only valid behavior, then it's already described in sentence below, and the link to out-of-range description is not needed.
Typo: "imeplementation"
void drawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, GLintptr offset) (OpenGL ES 3.0.6 §2.9.3, man page)
A [Draw Operation].
Draw using the currently bound element array buffer. All error conditions specified for drawElements in the section Writing to the drawing buffer of the WebGL 1.0 specification apply.
In addition, if indices used to draw are outside the range of [start, end], an imeplementation can either guarantee the behaviors defined in Out-of-Range Array Accesses, or simply discard the arguments start and end and call drawElements instead. In either situation, no GL errors should be generated for this cause.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: