More changes to disable WebGL support.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@126 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2010-10-24 17:00:13 +00:00
parent 5a4c8f5a13
commit 17208765df
1 changed files with 4 additions and 1 deletions

View File

@ -221,7 +221,10 @@ class BrowserWebKitInit : public webkit_glue::WebKitClientImpl {
}
virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() {
return WebKit::WebGraphicsContext3D::createDefault();
// TODO(cef): WebGL support is disabled until a better implementation is
// available.
//return WebKit::WebGraphicsContext3D::createDefault();
return NULL;
}
private: