[Bf-blender-cvs] [cffa39358fa] master: Cleanup: Compositor comment style

Jeroen Bakker noreply at git.blender.org
Tue Jan 5 15:51:05 CET 2021


Commit: cffa39358faa0c365cf12f9dc72eb138d823767a
Author: Jeroen Bakker
Date:   Tue Jan 5 15:44:09 2021 +0100
Branches: master
https://developer.blender.org/rBcffa39358faa0c365cf12f9dc72eb138d823767a

Cleanup: Compositor comment style

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

M	source/blender/compositor/intern/COM_SingleThreadedOperation.h
M	source/blender/compositor/operations/COM_AlphaOverKeyOperation.h
M	source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
M	source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h
M	source/blender/compositor/operations/COM_AntiAliasOperation.h
M	source/blender/compositor/operations/COM_BilateralBlurOperation.h
M	source/blender/compositor/operations/COM_BokehBlurOperation.h
M	source/blender/compositor/operations/COM_BokehImageOperation.h
M	source/blender/compositor/operations/COM_BoxMaskOperation.h
M	source/blender/compositor/operations/COM_BrightnessOperation.h
M	source/blender/compositor/operations/COM_CalculateMeanOperation.h
M	source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.h
M	source/blender/compositor/operations/COM_ChangeHSVOperation.h
M	source/blender/compositor/operations/COM_ChannelMatteOperation.h
M	source/blender/compositor/operations/COM_ChromaMatteOperation.h
M	source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
M	source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
M	source/blender/compositor/operations/COM_ColorCorrectionOperation.h
M	source/blender/compositor/operations/COM_ColorCurveOperation.h
M	source/blender/compositor/operations/COM_ColorExposureOperation.h
M	source/blender/compositor/operations/COM_ColorMatteOperation.h
M	source/blender/compositor/operations/COM_ColorRampOperation.h
M	source/blender/compositor/operations/COM_ColorSpillOperation.h
M	source/blender/compositor/operations/COM_ConvertColorProfileOperation.h
M	source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h
M	source/blender/compositor/operations/COM_DifferenceMatteOperation.h
M	source/blender/compositor/operations/COM_DilateErodeOperation.h
M	source/blender/compositor/operations/COM_DirectionalBlurOperation.h
M	source/blender/compositor/operations/COM_DisplaceOperation.h
M	source/blender/compositor/operations/COM_DisplaceSimpleOperation.h
M	source/blender/compositor/operations/COM_DistanceRGBMatteOperation.h
M	source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
M	source/blender/compositor/operations/COM_EllipseMaskOperation.h
M	source/blender/compositor/operations/COM_GammaCorrectOperation.h
M	source/blender/compositor/operations/COM_GammaOperation.h
M	source/blender/compositor/operations/COM_GaussianAlphaXBlurOperation.h
M	source/blender/compositor/operations/COM_GaussianAlphaYBlurOperation.h
M	source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h
M	source/blender/compositor/operations/COM_GaussianXBlurOperation.h
M	source/blender/compositor/operations/COM_GaussianYBlurOperation.h
M	source/blender/compositor/operations/COM_GlareThresholdOperation.h
M	source/blender/compositor/operations/COM_HueSaturationValueCorrectOperation.h
M	source/blender/compositor/operations/COM_InpaintOperation.h
M	source/blender/compositor/operations/COM_InvertOperation.h
M	source/blender/compositor/operations/COM_LuminanceMatteOperation.h
M	source/blender/compositor/operations/COM_MapRangeOperation.h
M	source/blender/compositor/operations/COM_MapUVOperation.h
M	source/blender/compositor/operations/COM_MapValueOperation.h
M	source/blender/compositor/operations/COM_MathBaseOperation.h
M	source/blender/compositor/operations/COM_MixOperation.h
M	source/blender/compositor/operations/COM_MovieClipAttributeOperation.h
M	source/blender/compositor/operations/COM_NormalizeOperation.h
M	source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h
M	source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h
M	source/blender/compositor/operations/COM_SetColorOperation.h
M	source/blender/compositor/operations/COM_SetSamplerOperation.h
M	source/blender/compositor/operations/COM_SetValueOperation.h
M	source/blender/compositor/operations/COM_SetVectorOperation.h
M	source/blender/compositor/operations/COM_TonemapOperation.h
M	source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
M	source/blender/compositor/operations/COM_VectorBlurOperation.h
M	source/blender/compositor/operations/COM_VectorCurveOperation.h
M	source/blender/compositor/operations/COM_ZCombineOperation.h

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

diff --git a/source/blender/compositor/intern/COM_SingleThreadedOperation.h b/source/blender/compositor/intern/COM_SingleThreadedOperation.h
index 7a97d790afe..31597c31bf7 100644
--- a/source/blender/compositor/intern/COM_SingleThreadedOperation.h
+++ b/source/blender/compositor/intern/COM_SingleThreadedOperation.h
@@ -34,7 +34,7 @@ class SingleThreadedOperation : public NodeOperation {
   SingleThreadedOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixel(float output[4], int x, int y, void *data);
 
diff --git a/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h b/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h
index de3d6bd1ee0..f2ec5ff12c2 100644
--- a/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h
+++ b/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h
@@ -32,7 +32,7 @@ class AlphaOverKeyOperation : public MixBaseOperation {
   AlphaOverKeyOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 };
diff --git a/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h b/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
index 22d64807512..73433ec3077 100644
--- a/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
+++ b/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
@@ -35,7 +35,7 @@ class AlphaOverMixedOperation : public MixBaseOperation {
   AlphaOverMixedOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h b/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h
index bc5cd07baf8..b149789878e 100644
--- a/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h
+++ b/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h
@@ -32,7 +32,7 @@ class AlphaOverPremultiplyOperation : public MixBaseOperation {
   AlphaOverPremultiplyOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 };
diff --git a/source/blender/compositor/operations/COM_AntiAliasOperation.h b/source/blender/compositor/operations/COM_AntiAliasOperation.h
index 8600c6dd481..571655813ae 100644
--- a/source/blender/compositor/operations/COM_AntiAliasOperation.h
+++ b/source/blender/compositor/operations/COM_AntiAliasOperation.h
@@ -37,7 +37,7 @@ class AntiAliasOperation : public NodeOperation {
   AntiAliasOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixel(float output[4], int x, int y, void *data);
 
diff --git a/source/blender/compositor/operations/COM_BilateralBlurOperation.h b/source/blender/compositor/operations/COM_BilateralBlurOperation.h
index a54e830459b..d059510f0bc 100644
--- a/source/blender/compositor/operations/COM_BilateralBlurOperation.h
+++ b/source/blender/compositor/operations/COM_BilateralBlurOperation.h
@@ -32,7 +32,7 @@ class BilateralBlurOperation : public NodeOperation, public QualityStepHelper {
   BilateralBlurOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixel(float output[4], int x, int y, void *data);
 
diff --git a/source/blender/compositor/operations/COM_BokehBlurOperation.h b/source/blender/compositor/operations/COM_BokehBlurOperation.h
index e6873a4b70b..335574a381d 100644
--- a/source/blender/compositor/operations/COM_BokehBlurOperation.h
+++ b/source/blender/compositor/operations/COM_BokehBlurOperation.h
@@ -39,7 +39,7 @@ class BokehBlurOperation : public NodeOperation, public QualityStepHelper {
 
   void *initializeTileData(rcti *rect);
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixel(float output[4], int x, int y, void *data);
 
diff --git a/source/blender/compositor/operations/COM_BokehImageOperation.h b/source/blender/compositor/operations/COM_BokehImageOperation.h
index 7e3c026ace8..01ffa026152 100644
--- a/source/blender/compositor/operations/COM_BokehImageOperation.h
+++ b/source/blender/compositor/operations/COM_BokehImageOperation.h
@@ -108,7 +108,7 @@ class BokehImageOperation : public NodeOperation {
   BokehImageOperation();
 
   /**
-   * \brief the inner loop of this program
+   * \brief The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_BoxMaskOperation.h b/source/blender/compositor/operations/COM_BoxMaskOperation.h
index 070a7f52b1b..c98972b82b7 100644
--- a/source/blender/compositor/operations/COM_BoxMaskOperation.h
+++ b/source/blender/compositor/operations/COM_BoxMaskOperation.h
@@ -39,7 +39,7 @@ class BoxMaskOperation : public NodeOperation {
   BoxMaskOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_BrightnessOperation.h b/source/blender/compositor/operations/COM_BrightnessOperation.h
index 28bd3576201..6fbcfe3a17a 100644
--- a/source/blender/compositor/operations/COM_BrightnessOperation.h
+++ b/source/blender/compositor/operations/COM_BrightnessOperation.h
@@ -35,7 +35,7 @@ class BrightnessOperation : public NodeOperation {
   BrightnessOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_CalculateMeanOperation.h b/source/blender/compositor/operations/COM_CalculateMeanOperation.h
index aa08555467b..e4937931df0 100644
--- a/source/blender/compositor/operations/COM_CalculateMeanOperation.h
+++ b/source/blender/compositor/operations/COM_CalculateMeanOperation.h
@@ -40,7 +40,7 @@ class CalculateMeanOperation : public NodeOperation {
   CalculateMeanOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixel(float output[4], int x, int y, void *data);
 
diff --git a/source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.h b/source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.h
index 2ab0e82728d..a267663cfc8 100644
--- a/source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.h
+++ b/source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.h
@@ -34,7 +34,7 @@ class CalculateStandardDeviationOperation : public CalculateMeanOperation {
   CalculateStandardDeviationOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixel(float output[4], int x, int y, void *data);
 
diff --git a/source/blender/compositor/operations/COM_ChangeHSVOperation.h b/source/blender/compositor/operations/COM_ChangeHSVOperation.h
index b4fa1a3bdd4..edc532a3f43 100644
--- a/source/blender/compositor/operations/COM_ChangeHSVOperation.h
+++ b/source/blender/compositor/operations/COM_ChangeHSVOperation.h
@@ -41,7 +41,7 @@ class ChangeHSVOperation : public NodeOperation {
   void deinitExecution();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 };
diff --git a/source/blender/compositor/operations/COM_ChannelMatteOperation.h b/source/blender/compositor/operations/COM_ChannelMatteOperation.h
index d4c097fe66e..24a5e03a1bf 100644
--- a/source/blender/compositor/operations/COM_ChannelMatteOperation.h
+++ b/source/blender/compositor/operations/COM_ChannelMatteOperation.h
@@ -54,7 +54,7 @@ class ChannelMatteOperation : public NodeOperation {
   ChannelMatteOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_ChromaMatteOperation.h b/source/blender/compositor/operations/COM_ChromaMatteOperation.h
index 5c4ada8de38..c8d261284ed 100644
--- a/source/blender/compositor/operations/COM_ChromaMatteOperation.h
+++ b/source/blender/compositor/operations/COM_ChromaMatteOperation.h
@@ -37,7 +37,7 @@ class ChromaMatteOperation : public NodeOperation {
   ChromaMatteOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
index 77ead2f1d26..1ec920cb2da 100644
--- a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
+++ b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
@@ -43,7 +43,7 @@ class ColorBalanceASCCDLOperation : public NodeOperation {
   ColorBalanceASCCDLOperation();
 
   /**
-   * the inner loop of this program
+   * The inner loop of this operation.
    */
   void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
diff --git a/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h b/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
index c34591172b9..e6acd16e4f0 100644
--- a/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
+++ b/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
@@ -43,7 +43,7 @@ class ColorBalanceLGGOperation : public NodeOperation {
   ColorBalanceLGGOperation();
 
   /**
-   * the inner loop of this program
+   * The inne

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list