RenderingServer::create_local_rendering_device null check and docs
Co-authored-by: Clay John <claynjohn@gmail.com>
This commit is contained in:
parent
84c404f6bc
commit
9ce9c959ab
2 changed files with 9 additions and 1 deletions
|
|
@ -1476,7 +1476,11 @@ RenderingDevice *RenderingServer::get_rendering_device() const {
|
|||
}
|
||||
|
||||
RenderingDevice *RenderingServer::create_local_rendering_device() const {
|
||||
return RenderingDevice::get_singleton()->create_local_device();
|
||||
RenderingDevice *device = RenderingDevice::get_singleton();
|
||||
if (!device) {
|
||||
return nullptr;
|
||||
}
|
||||
return device->create_local_device();
|
||||
}
|
||||
|
||||
static Vector<Ref<Image>> _get_imgvec(const TypedArray<Image> &p_layers) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue