Home | History | Annotate | Download | only in canvas

Lines Matching defs:WebGLContextAttributes

31 #include "WebGLContextAttributes.h"
35 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create()
37 return adoptRef(new WebGLContextAttributes());
40 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
42 return adoptRef(new WebGLContextAttributes(attributes));
45 WebGLContextAttributes::WebGLContextAttributes()
50 WebGLContextAttributes::WebGLContextAttributes(GraphicsContext3D::Attributes attributes)
56 WebGLContextAttributes::~WebGLContextAttributes()
60 bool WebGLContextAttributes::alpha() const
65 void WebGLContextAttributes::setAlpha(bool alpha)
70 bool WebGLContextAttributes::depth() const
75 void WebGLContextAttributes::setDepth(bool depth)
80 bool WebGLContextAttributes::stencil() const
85 void WebGLContextAttributes::setStencil(bool stencil)
90 bool WebGLContextAttributes::antialias() const
95 void WebGLContextAttributes::setAntialias(bool antialias)
100 bool WebGLContextAttributes::premultipliedAlpha() const
105 void WebGLContextAttributes::setPremultipliedAlpha(bool premultipliedAlpha)
110 bool WebGLContextAttributes::preserveDrawingBuffer() const
115 void WebGLContextAttributes::setPreserveDrawingBuffer(bool preserveDrawingBuffer)
120 GraphicsContext3D::Attributes WebGLContextAttributes::attributes() const