mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Fix Mac compile errors.
- Fix GYP configuration errors. - Only use angle GL implementation on Windows (not supported on other platforms). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@238 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -149,7 +149,11 @@ void CefProcessUIThread::Init() {
|
||||
WebKit::WebScriptController::registerExtension(
|
||||
extensions_v8::GCExtension::Get());
|
||||
|
||||
#if defined(OS_WIN)
|
||||
gfx::InitializeGLBindings(gfx::kGLImplementationEGLGLES2);
|
||||
#else
|
||||
gfx::InitializeGLBindings(gfx::kGLImplementationDesktopGL);
|
||||
#endif
|
||||
|
||||
net::URLRequest::RegisterProtocolFactory("blob", &BlobURLRequestJobFactory);
|
||||
net::URLRequest::RegisterProtocolFactory("filesystem",
|
||||
|
Reference in New Issue
Block a user