diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2018-05-08 16:44:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 16:44:35 +0200 |
commit | e668757aa9ff4ccd3a90b1f402aba8a424b4c11d (patch) | |
tree | e569a46b16008d39e541d484fed95ad58ee4068a /core/os/os.cpp | |
parent | aacd7f012ebcfb7f8023ebecba2e003fcd018e98 (diff) | |
parent | ddae098deec89d67228a74623ebe7f5db39f425b (diff) | |
download | redot-engine-e668757aa9ff4ccd3a90b1f402aba8a424b4c11d.tar.gz |
Merge pull request #14622 from bruvzg/non-rectangular-windows
Experimental support for windows with per-pixel transparency.
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 854d554b10..5eed10e30c 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -672,6 +672,7 @@ OS::OS() { _render_thread_mode = RENDER_THREAD_SAFE; _allow_hidpi = false; + _allow_layered = false; _stack_bottom = (void *)(&stack_bottom); _logger = NULL; |