Home | History | Annotate | Download | only in canvas

Lines Matching defs:generateMipmap

1969 void WebGLRenderingContext::generateMipmap(GC3Denum target)
1973 WebGLTexture* tex = validateTextureBinding("generateMipmap", target, false);
1977 synthesizeGLError(GraphicsContext3D::INVALID_OPERATION, "generateMipmap", "level 0 not power of 2 or not all the same size");
1980 if (!validateSettableTexFormat("generateMipmap", tex->getInternalFormat(target, 0)))
1983 // generateMipmap won't work properly if minFilter is not NEAREST_MIPMAP_LINEAR
1992 m_context->generateMipmap(target);