HomeSort by relevance Sort by last modified time
    Searched defs:WebGLContextAttributes (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/html/canvas/
WebGLContextAttributes.h 36 class WebGLContextAttributes : public CanvasContextAttributes {
38 virtual ~WebGLContextAttributes();
41 static PassRefPtr<WebGLContextAttributes> create();
44 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
78 WebGLContextAttributes();
79 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
WebGLContextAttributes.cpp 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
    [all...]

Completed in 15 milliseconds