|
@@ -347,7 +347,8 @@ public:
|
|
|
browserSettings.universal_access_from_file_urls = STATE_ENABLED;
|
|
browserSettings.universal_access_from_file_urls = STATE_ENABLED;
|
|
|
|
|
|
|
|
windowInfo.width = width;
|
|
windowInfo.width = width;
|
|
|
- windowInfo.height = height;
|
|
|
|
|
|
|
+ windowInfo.height = height;
|
|
|
|
|
+ windowInfo.transparent_painting_enabled = 1;
|
|
|
|
|
|
|
|
Graphics* graphics = webClient_->GetSubsystem<Graphics>();
|
|
Graphics* graphics = webClient_->GetSubsystem<Graphics>();
|
|
|
|
|
|
|
@@ -365,7 +366,7 @@ public:
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ATOMIC_PLATFORM_WINDOWS
|
|
#ifdef ATOMIC_PLATFORM_WINDOWS
|
|
|
- windowInfo.SetAsWindowless(info.info.win.window, false);
|
|
|
|
|
|
|
+ windowInfo.SetAsWindowless(info.info.win.window, /*transparent*/ true);
|
|
|
#endif
|
|
#endif
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -374,7 +375,7 @@ public:
|
|
|
{
|
|
{
|
|
|
#ifndef ATOMIC_PLATFORM_LINUX
|
|
#ifndef ATOMIC_PLATFORM_LINUX
|
|
|
// headless
|
|
// headless
|
|
|
- windowInfo.SetAsWindowless(nullptr, false);
|
|
|
|
|
|
|
+ windowInfo.SetAsWindowless(nullptr, true);
|
|
|
#endif
|
|
#endif
|
|
|
}
|
|
}
|
|
|
|
|
|