Remove obsolete BufferDataSource

This commit is contained in:
Anthony Ramine 2018-04-03 11:09:14 +02:00
parent a82164d8a5
commit 088ebcb095
3 changed files with 7 additions and 9 deletions

View file

@ -28,8 +28,6 @@ typedef (ImageData or
HTMLImageElement or
HTMLCanvasElement or
HTMLVideoElement) TexImageSource;
typedef (ArrayBuffer or ArrayBufferView) BufferDataSource;
dictionary WebGLContextAttributes {
GLboolean alpha = true;
@ -495,7 +493,7 @@ interface WebGLRenderingContextBase
void bufferData(GLenum target, object? data, GLenum usage);
[Throws]
void bufferData(GLenum target, GLsizeiptr size, GLenum usage);
void bufferSubData(GLenum target, GLintptr offset, /*[AllowShared]*/ BufferDataSource? data);
void bufferSubData(GLenum target, GLintptr offset, /*[AllowShared]*/ BufferSource? data);
[WebGLHandlesContextLoss] GLenum checkFramebufferStatus(GLenum target);
void clear(GLbitfield mask);