2024-07-11 12:47:58 +02:00
|
|
|
/* SPDX-FileCopyrightText: 2024 Blender Authors
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
|
|
|
|
|
#include "COM_meta_data.hh"
|
|
|
|
|
|
2024-12-17 11:39:04 +01:00
|
|
|
namespace blender::compositor {
|
2024-07-11 12:47:58 +02:00
|
|
|
|
|
|
|
|
bool MetaData::is_cryptomatte_layer() const
|
|
|
|
|
{
|
|
|
|
|
return !this->cryptomatte.manifest.empty() || !this->cryptomatte.hash.empty() ||
|
|
|
|
|
!this->cryptomatte.conversion.empty();
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-17 11:39:04 +01:00
|
|
|
} // namespace blender::compositor
|