Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/intern/COM_Enums.cc')
-rw-r--r--source/blender/compositor/intern/COM_Enums.cc61
1 files changed, 61 insertions, 0 deletions
diff --git a/source/blender/compositor/intern/COM_Enums.cc b/source/blender/compositor/intern/COM_Enums.cc
new file mode 100644
index 00000000000..d218de92544
--- /dev/null
+++ b/source/blender/compositor/intern/COM_Enums.cc
@@ -0,0 +1,61 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Copyright 2021, Blender Foundation.
+ */
+
+#include "COM_Enums.h"
+
+namespace blender::compositor {
+
+std::ostream &operator<<(std::ostream &os, const eCompositorPriority &priority)
+{
+ switch (priority) {
+ case eCompositorPriority::High: {
+ os << "Priority::High";
+ break;
+ }
+ case eCompositorPriority::Medium: {
+ os << "Priority::Medium";
+ break;
+ }
+ case eCompositorPriority::Low: {
+ os << "Priority::Low";
+ break;
+ }
+ }
+ return os;
+}
+
+std::ostream &operator<<(std::ostream &os, const eWorkPackageState &execution_state)
+{
+ switch (execution_state) {
+ case eWorkPackageState::NotScheduled: {
+ os << "ExecutionState::NotScheduled";
+ break;
+ }
+ case eWorkPackageState::Scheduled: {
+ os << "ExecutionState::Scheduled";
+ break;
+ }
+ case eWorkPackageState::Executed: {
+ os << "ExecutionState::Executed";
+ break;
+ }
+ }
+ return os;
+}
+
+} // namespace blender::compositor