[Bf-blender-cvs] [877b76c1821] temp-compositor-scheduling: Small tweaks to comments and definitions.

Jeroen Bakker noreply at git.blender.org
Tue Apr 6 16:37:10 CEST 2021


Commit: 877b76c1821643f184fd2e164325f2a060dc0d1b
Author: Jeroen Bakker
Date:   Tue Apr 6 16:36:57 2021 +0200
Branches: temp-compositor-scheduling
https://developer.blender.org/rB877b76c1821643f184fd2e164325f2a060dc0d1b

Small tweaks to comments and definitions.

===================================================================

M	source/blender/compositor/intern/COM_Enums.h
M	source/blender/compositor/intern/COM_WorkPackage.h

===================================================================

diff --git a/source/blender/compositor/intern/COM_Enums.h b/source/blender/compositor/intern/COM_Enums.h
index 6ab2ef51629..6b378770a5f 100644
--- a/source/blender/compositor/intern/COM_Enums.h
+++ b/source/blender/compositor/intern/COM_Enums.h
@@ -67,6 +67,7 @@ enum class eCompositorPriority {
  * \brief the execution state of a chunk in an ExecutionGroup
  * \ingroup Execution
  */
+/* NOTE: Explicit data type due to atomic operations. */
 enum class eWorkPackageState : int32_t {
   /**
    * \brief chunk is not yet scheduled
diff --git a/source/blender/compositor/intern/COM_WorkPackage.h b/source/blender/compositor/intern/COM_WorkPackage.h
index 9aca3e03248..0c07dd3924b 100644
--- a/source/blender/compositor/intern/COM_WorkPackage.h
+++ b/source/blender/compositor/intern/COM_WorkPackage.h
@@ -79,8 +79,6 @@ struct WorkPackage {
     child->num_parents++;
   }
 
-  std::string str(int indent = 0) const;
-
 #ifdef WITH_CXX_GUARDEDALLOC
   MEM_CXX_CLASS_ALLOC_FUNCS("COM:WorkPackage")
 #endif



More information about the Bf-blender-cvs mailing list