Home | History | Annotate | Download | only in graphics

Lines Matching refs:Attributes

276 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs)
278 WebKit::WebGraphicsContext3D::Attributes webAttributes;
455 GraphicsContext3D::Attributes GraphicsContext3D::getContextAttributes()
457 WebKit::WebGraphicsContext3D::Attributes webAttributes = m_impl->getContextAttributes();
458 GraphicsContext3D::Attributes attributes;
459 attributes.alpha = webAttributes.alpha;
460 attributes.depth = webAttributes.depth;
461 attributes.stencil = webAttributes.stencil;
462 attributes.antialias = webAttributes.antialias;
463 attributes.premultipliedAlpha = webAttributes.premultipliedAlpha;
464 attributes.preserveDrawingBuffer = m_preserveDrawingBuffer;
465 attributes.preferDiscreteGPU = webAttributes.preferDiscreteGPU;
466 return attributes;