Bug 1237637 - Disallow negative levels for framebuffer attachments. - r=jrmuizel

This commit is contained in:
Jeff Gilbert 2016-01-07 16:22:45 -08:00
Родитель d15c9fcbae
Коммит f3b0f8b2c7
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -537,6 +537,11 @@ WebGLContext::FramebufferTexture2D(GLenum target,
if (!ValidateFramebufferTarget(target, "framebufferTexture2D"))
return;
if (level < 0) {
ErrorInvalidValue("framebufferTexture2D: level must not be negative.");
return;
}
if (!IsWebGL2() && level != 0) {
ErrorInvalidValue("framebufferTexture2D: level must be 0.");
return;