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

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextAttributes.h 37 class WebGLContextAttributes : public CanvasContextAttributes, public ScriptWrappable {
39 virtual ~WebGLContextAttributes();
42 static PassRefPtr<WebGLContextAttributes> create();
45 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
79 WebGLContextAttributes();
80 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
WebGLContextAttributes.cpp 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
    [all...]

Completed in 42 milliseconds