Update to Chromium revision 64233.
- Enable the WebGL desktop implementation which is now working in combination with accelerated compositing (issue #136). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@129 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
3719c1cb12
commit
fedc693be1
|
@ -57,3 +57,4 @@ Date | CEF Revision | Chromium Revision
|
|||
2010-10-15 | /trunk@116 | /trunk@62731
|
||||
2010-10-21 | /trunk@122 | /trunk@63396
|
||||
2010-10-26 | /trunk@127 | /trunk@63876
|
||||
2010-10-28 | /trunk@129 | /trunk@64233
|
||||
|
|
|
@ -55,7 +55,7 @@ class BrowserWebKitInit : public webkit_glue::WebKitClientImpl {
|
|||
WebKit::WebRuntimeFeatures::enableSockets(true);
|
||||
WebKit::WebRuntimeFeatures::enableApplicationCache(true);
|
||||
WebKit::WebRuntimeFeatures::enableDatabase(true);
|
||||
WebKit::WebRuntimeFeatures::enableWebGL(false);
|
||||
WebKit::WebRuntimeFeatures::enableWebGL(true);
|
||||
WebKit::WebRuntimeFeatures::enablePushState(true);
|
||||
WebKit::WebRuntimeFeatures::enableNotifications(true);
|
||||
WebKit::WebRuntimeFeatures::enableTouch(true);
|
||||
|
|
|
@ -147,7 +147,7 @@ void CefProcessUIThread::Init() {
|
|||
net::SSLClientSocketNSSFactory);
|
||||
#endif
|
||||
|
||||
gfx::InitializeGLBindings(gfx::kGLImplementationNone);
|
||||
gfx::InitializeGLBindings(gfx::kGLImplementationDesktopGL);
|
||||
|
||||
URLRequest::RegisterProtocolFactory("blob", &BlobURLRequestJobFactory);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue