Backout changeset 740e4ce7bb16 (bug 1220450) for landing with oddball whitespace.

This commit is contained in:
Ryan VanderMeulen 2016-01-01 19:49:46 -05:00
Родитель f93b41b27c
Коммит 6c23983753
1 изменённых файлов: 1 добавлений и 6 удалений

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

@ -177,9 +177,7 @@ WebGLContext::BufferData(GLenum target, WebGLsizeiptr size, GLenum usage)
}
boundBuffer->SetByteLength(size);
if (!boundBuffer->ElementArrayCacheBufferData(nullptr, size)) {
boundBuffer->SetByteLength(0);
return ErrorOutOfMemory("bufferData: out of memory");
}
}
@ -229,12 +227,9 @@ WebGLContext::BufferDataT(GLenum target,
}
boundBuffer->SetByteLength(data.LengthAllowShared());
// Warning: Possibly shared memory. See bug 1225033.
if (!boundBuffer->ElementArrayCacheBufferData(data.DataAllowShared(), data.LengthAllowShared())) {
boundBuffer->SetByteLength(0);
if (!boundBuffer->ElementArrayCacheBufferData(data.DataAllowShared(), data.LengthAllowShared()))
return ErrorOutOfMemory("bufferData: out of memory");
}
}
void