mirror of
https://github.com/godotengine/godot.git
synced 2025-02-16 15:50:45 +00:00
Fix build with vuklan=no
and d3d12=no
after #91505.
This commit is contained in:
parent
b7feebefab
commit
fc89a0c118
@ -5201,10 +5201,11 @@ bool DisplayServerX11::is_window_transparency_available() const {
|
||||
if (XGetSelectionOwner(x11_display, net_wm_cm) == None) {
|
||||
return false;
|
||||
}
|
||||
|
||||
#if defined(RD_ENABLED)
|
||||
if (rendering_device && !rendering_device->is_composite_alpha_supported()) {
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
return OS::get_singleton()->is_layered_allowed();
|
||||
}
|
||||
|
||||
|
@ -3315,9 +3315,11 @@ void DisplayServerMacOS::delete_status_indicator(IndicatorID p_id) {
|
||||
}
|
||||
|
||||
bool DisplayServerMacOS::is_window_transparency_available() const {
|
||||
#if defined(RD_ENABLED)
|
||||
if (rendering_device && !rendering_device->is_composite_alpha_supported()) {
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
return OS::get_singleton()->is_layered_allowed();
|
||||
}
|
||||
|
||||
|
@ -3408,9 +3408,11 @@ bool DisplayServerWindows::is_window_transparency_available() const {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
#if defined(RD_ENABLED)
|
||||
if (rendering_device && !rendering_device->is_composite_alpha_supported()) {
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
return OS::get_singleton()->is_layered_allowed();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user