Home | History | Annotate | Download | only in canvas

Lines Matching refs:renderbuffer

64     PassRefPtr<WebGLFramebuffer::WebGLAttachment> WebGLRenderbufferAttachment::create(WebGLRenderbuffer* renderbuffer)
66 return adoptRef(new WebGLRenderbufferAttachment(renderbuffer));
69 WebGLRenderbufferAttachment::WebGLRenderbufferAttachment(WebGLRenderbuffer* renderbuffer)
70 : m_renderbuffer(renderbuffer)
287 void WebGLFramebuffer::setAttachmentForBoundFramebuffer(GLenum attachment, WebGLRenderbuffer* renderbuffer)
293 if (renderbuffer && renderbuffer->object()) {
294 m_attachments.add(attachment, WebGLRenderbufferAttachment::create(renderbuffer));
296 renderbuffer->onAttached();
328 *reason = "the internalformat of the attached renderbuffer is not DEPTH_COMPONENT16";
341 // and check renderbuffer type here only.
344 *reason = "the internalformat of the attached renderbuffer is not STENCIL_INDEX8";
351 *reason = "the internalformat of the attached renderbuffer is not DEPTH_STENCIL";
367 *reason = "the internalformat of the attached renderbuffer is not color-renderable";