Home | History | Annotate | Download | only in canvas

Lines Matching refs:compressedTexSubImage2D

1402 void WebGLRenderingContext::compressedTexSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset,
1407 if (!validateTexFuncLevel("compressedTexSubImage2D", target, level))
1410 synthesizeGLError(GraphicsContext3D::INVALID_ENUM, "compressedTexSubImage2D", "invalid format");
1413 if (!validateCompressedTexFuncData("compressedTexSubImage2D", width, height, format, data))
1416 WebGLTexture* tex = validateTextureBinding("compressedTexSubImage2D", target, true);
1421 synthesizeGLError(GraphicsContext3D::INVALID_OPERATION, "compressedTexSubImage2D", "format does not match texture format");
1425 if (!validateCompressedTexSubDimensions("compressedTexSubImage2D", target, level, xoffset, yoffset, width, height, format, tex))
1428 graphicsContext3D()->compressedTexSubImage2D(target, level, xoffset, yoffset,