Bug 1228949 - Fix WebGLBuffer content type when the target is LOCAL_GL_COPY_READ_BUFFER or LOCAL_GL_COPY_WRITE_BUFFER. r=jgilbert

This commit is contained in:
Ethan Lin 2015-11-30 01:30:00 +01:00
Родитель 0e56a625b2
Коммит c257b89d86
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -46,7 +46,9 @@ WebGLBuffer::BindTo(GLenum target)
case LOCAL_GL_COPY_READ_BUFFER:
case LOCAL_GL_COPY_WRITE_BUFFER:
/* Do nothing. Doesn't set the type of the buffer contents. */
if (mContent == Kind::Undefined) {
mContent = Kind::OtherData;
}
break;
default: