Kaydet (Commit) 773d2bde authored tarafından Markus Mohrhard's avatar Markus Mohrhard

block all RDP sessions from using OpenGL

Normally you only get the Microsoft OpenGL 1.1 driver for RDP so it is save to just block it.

Change-Id: Id9b3af23d56926b09316fbf8b873e271060d2c6a
üst 09b1c24d
...@@ -682,6 +682,12 @@ bool WinOpenGLDeviceInfo::isDeviceBlocked() ...@@ -682,6 +682,12 @@ bool WinOpenGLDeviceInfo::isDeviceBlocked()
// out of static blocks (i.e. if we were wrong or something was patched, we // out of static blocks (i.e. if we were wrong or something was patched, we
// can back out our static block without doing a release). // can back out our static block without doing a release).
if (mbRDP)
{
SAL_WARN("vcl.opengl", "all OpenGL blocked for RDP sessions");
return true;
}
return FindBlocklistedDeviceInList(); return FindBlocklistedDeviceInList();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment