Home | History | Annotate | Download | only in canvas

Lines Matching refs:pixels

1623                                           unsigned format, unsigned type, WebGLArray* pixels, ExceptionCode& ec)
1629 border, format, type, pixels ? pixels->baseAddress() : 0);
1633 void WebGLRenderingContext::texImage2D(unsigned target, unsigned level, ImageData* pixels,
1641 m_context->texImage2D(target, level, GraphicsContext3D::RGBA, pixels->width(), pixels->height(), 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, pixels->data()->data()->data());
1642 //RLP: m_context->texImage2D(target, level, pixels, flipY, premultiplyAlpha);
1714 unsigned format, unsigned type, WebGLArray* pixels, ExceptionCode& ec)
1719 m_context->texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels ? pixels->baseAddress() : 0);
1724 ImageData* pixels, bool flipY, bool premultiplyAlpha, ExceptionCode& ec)
1730 m_context->texSubImage2D(target, level, xoffset, yoffset, pixels->width(), pixels->height(), GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, pixels->data()->data()->data());
1731 //RLP: m_context->texSubImage2D(target, level, xoffset, yoffset, pixels, flipY, premultiplyAlpha);