Searched defs:attachment (Results 1 - 7 of 7) sorted by relevance

/external/webkit/WebKit/win/
H A DWebURLResponse.cpp395 /* [retval][out] */ BOOL *attachment)
397 *attachment = m_response.isAttachment();
394 isAttachment( BOOL *attachment) argument
/external/webkit/WebCore/bindings/js/
H A DJSWebGLRenderingContextCustom.cpp207 unsigned attachment = args.at(1).toInt32(exec); local
213 WebGLGetInfo info = context->getFramebufferAttachmentParameter(target, attachment, pname, ec);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp309 unsigned attachment = toInt32(args[1], ok); local
319 WebGLGetInfo info = context->getFramebufferAttachmentParameter(target, attachment, pname, ec);
/external/webkit/WebCore/rendering/style/
H A DFillLayer.h70 EFillAttachment attachment() const { return static_cast<EFillAttachment>(m_attachment); } function in struct:WebCore::FillLayer
96 void setAttachment(EFillAttachment attachment) { m_attachment = attachment; m_attachmentSet = true; } argument
/external/webkit/WebCore/platform/graphics/mac/
H A DGraphicsContext3DMac.cpp476 void GraphicsContext3D::framebufferRenderbuffer(unsigned long target, unsigned long attachment, unsigned long renderbuffertarget, WebGLRenderbuffer* buffer) argument
479 ::glFramebufferRenderbufferEXT(target, attachment, renderbuffertarget, buffer ? (GLuint) buffer->object() : 0);
482 void GraphicsContext3D::framebufferTexture2D(unsigned long target, unsigned long attachment, unsigned long textarget, WebGLTexture* texture, long level) argument
485 ::glFramebufferTexture2DEXT(target, attachment, textarget, texture ? (GLuint) texture->object() : 0, level);
986 void GraphicsContext3D::getFramebufferAttachmentParameteriv(unsigned long target, unsigned long attachment, unsigned long pname, int* value) argument
989 ::glGetFramebufferAttachmentParameterivEXT(target, attachment, pname, value);
/external/webkit/WebCore/html/canvas/
H A DWebGLRenderingContext.cpp778 void WebGLRenderingContext::framebufferRenderbuffer(unsigned long target, unsigned long attachment, unsigned long renderbuffertarget, WebGLRenderbuffer* buffer, ExceptionCode& ec) argument
792 m_context->framebufferRenderbuffer(target, attachment, renderbuffertarget, buffer);
796 void WebGLRenderingContext::framebufferTexture2D(unsigned long target, unsigned long attachment, unsigned long textarget, WebGLTexture* texture, long level, ExceptionCode& ec) argument
810 m_context->framebufferTexture2D(target, attachment, textarget, texture, level);
893 WebGLGetInfo WebGLRenderingContext::getFramebufferAttachmentParameter(unsigned long target, unsigned long attachment, unsigned long pname, ExceptionCode& ec) argument
897 || (attachment != GraphicsContext3D::COLOR_ATTACHMENT0
898 && attachment != GraphicsContext3D::DEPTH_ATTACHMENT
899 && attachment != GraphicsContext3D::STENCIL_ATTACHMENT)
911 m_context->getFramebufferAttachmentParameteriv(target, attachment, pname, &value);
919 m_context->getFramebufferAttachmentParameteriv(target, attachment, GraphicsContext3
[all...]
/external/webkit/WebKit/chromium/src/
H A DGraphicsContext3D.cpp1590 unsigned long attachment,
1595 glGetFramebufferAttachmentParameterivEXT(target, attachment, pname, value);
1589 getFramebufferAttachmentParameteriv(unsigned long target, unsigned long attachment, unsigned long pname, int* value) argument

Completed in 162 milliseconds