Home | History | Annotate | Download | only in canvas

Lines Matching defs:generateMipmap

2020 void WebGLRenderingContextBase::generateMipmap(GLenum target)
2024 WebGLTexture* tex = validateTextureBinding("generateMipmap", target, false);
2028 synthesizeGLError(GL_INVALID_OPERATION, "generateMipmap", "level 0 not power of 2 or not all the same size");
2031 if (!validateSettableTexFormat("generateMipmap", tex->getInternalFormat(target, 0)))
2034 // generateMipmap won't work properly if minFilter is not NEAREST_MIPMAP_LINEAR
2043 webContext()->generateMipmap(target);