Home | History | Annotate | Download | only in canvas

Lines Matching defs:WebGLContextAttributes

29 #include "core/html/canvas/WebGLContextAttributes.h"
33 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create()
35 return adoptRef(new WebGLContextAttributes());
38 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
40 return adoptRef(new WebGLContextAttributes(attributes));
43 WebGLContextAttributes::WebGLContextAttributes()
49 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