From cffa39358faa0c365cf12f9dc72eb138d823767a Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Tue, 5 Jan 2021 15:44:09 +0100 Subject: Cleanup: Compositor comment style --- source/blender/compositor/intern/COM_SingleThreadedOperation.h | 2 +- source/blender/compositor/operations/COM_AlphaOverKeyOperation.h | 2 +- .../blender/compositor/operations/COM_AlphaOverMixedOperation.h | 2 +- .../compositor/operations/COM_AlphaOverPremultiplyOperation.h | 2 +- source/blender/compositor/operations/COM_AntiAliasOperation.h | 2 +- source/blender/compositor/operations/COM_BilateralBlurOperation.h | 2 +- source/blender/compositor/operations/COM_BokehBlurOperation.h | 2 +- source/blender/compositor/operations/COM_BokehImageOperation.h | 2 +- source/blender/compositor/operations/COM_BoxMaskOperation.h | 2 +- source/blender/compositor/operations/COM_BrightnessOperation.h | 2 +- source/blender/compositor/operations/COM_CalculateMeanOperation.h | 2 +- .../operations/COM_CalculateStandardDeviationOperation.h | 2 +- source/blender/compositor/operations/COM_ChangeHSVOperation.h | 2 +- source/blender/compositor/operations/COM_ChannelMatteOperation.h | 2 +- source/blender/compositor/operations/COM_ChromaMatteOperation.h | 2 +- .../compositor/operations/COM_ColorBalanceASCCDLOperation.h | 2 +- .../blender/compositor/operations/COM_ColorBalanceLGGOperation.h | 2 +- .../blender/compositor/operations/COM_ColorCorrectionOperation.h | 2 +- source/blender/compositor/operations/COM_ColorCurveOperation.h | 4 ++-- source/blender/compositor/operations/COM_ColorExposureOperation.h | 2 +- source/blender/compositor/operations/COM_ColorMatteOperation.h | 2 +- source/blender/compositor/operations/COM_ColorRampOperation.h | 2 +- source/blender/compositor/operations/COM_ColorSpillOperation.h | 2 +- .../compositor/operations/COM_ConvertColorProfileOperation.h | 2 +- .../compositor/operations/COM_ConvertDepthToRadiusOperation.h | 2 +- .../blender/compositor/operations/COM_DifferenceMatteOperation.h | 2 +- source/blender/compositor/operations/COM_DilateErodeOperation.h | 8 ++++---- .../blender/compositor/operations/COM_DirectionalBlurOperation.h | 2 +- source/blender/compositor/operations/COM_DisplaceOperation.h | 2 +- .../blender/compositor/operations/COM_DisplaceSimpleOperation.h | 2 +- .../blender/compositor/operations/COM_DistanceRGBMatteOperation.h | 2 +- .../blender/compositor/operations/COM_DoubleEdgeMaskOperation.h | 2 +- source/blender/compositor/operations/COM_EllipseMaskOperation.h | 2 +- source/blender/compositor/operations/COM_GammaCorrectOperation.h | 4 ++-- source/blender/compositor/operations/COM_GammaOperation.h | 2 +- .../compositor/operations/COM_GaussianAlphaXBlurOperation.h | 2 +- .../compositor/operations/COM_GaussianAlphaYBlurOperation.h | 2 +- .../compositor/operations/COM_GaussianBokehBlurOperation.h | 4 ++-- source/blender/compositor/operations/COM_GaussianXBlurOperation.h | 2 +- source/blender/compositor/operations/COM_GaussianYBlurOperation.h | 2 +- .../blender/compositor/operations/COM_GlareThresholdOperation.h | 2 +- .../operations/COM_HueSaturationValueCorrectOperation.h | 2 +- source/blender/compositor/operations/COM_InpaintOperation.h | 2 +- source/blender/compositor/operations/COM_InvertOperation.h | 2 +- .../blender/compositor/operations/COM_LuminanceMatteOperation.h | 2 +- source/blender/compositor/operations/COM_MapRangeOperation.h | 2 +- source/blender/compositor/operations/COM_MapUVOperation.h | 2 +- source/blender/compositor/operations/COM_MapValueOperation.h | 2 +- source/blender/compositor/operations/COM_MathBaseOperation.h | 2 +- source/blender/compositor/operations/COM_MixOperation.h | 2 +- .../compositor/operations/COM_MovieClipAttributeOperation.h | 2 +- source/blender/compositor/operations/COM_NormalizeOperation.h | 2 +- .../compositor/operations/COM_ProjectorLensDistortionOperation.h | 2 +- .../compositor/operations/COM_ScreenLensDistortionOperation.h | 2 +- source/blender/compositor/operations/COM_SetColorOperation.h | 2 +- source/blender/compositor/operations/COM_SetSamplerOperation.h | 2 +- source/blender/compositor/operations/COM_SetValueOperation.h | 2 +- source/blender/compositor/operations/COM_SetVectorOperation.h | 2 +- source/blender/compositor/operations/COM_TonemapOperation.h | 4 ++-- .../compositor/operations/COM_VariableSizeBokehBlurOperation.h | 4 ++-- source/blender/compositor/operations/COM_VectorBlurOperation.h | 2 +- source/blender/compositor/operations/COM_VectorCurveOperation.h | 2 +- source/blender/compositor/operations/COM_ZCombineOperation.h | 2 +- 63 files changed, 71 insertions(+), 71 deletions(-) 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 inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); diff --git a/source/blender/compositor/operations/COM_ColorCorrectionOperation.h b/source/blender/compositor/operations/COM_ColorCorrectionOperation.h index 66213eb88a4..9a2e60c0d77 100644 --- a/source/blender/compositor/operations/COM_ColorCorrectionOperation.h +++ b/source/blender/compositor/operations/COM_ColorCorrectionOperation.h @@ -37,7 +37,7 @@ class ColorCorrectionOperation : public NodeOperation { ColorCorrectionOperation(); /** - * 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_ColorCurveOperation.h b/source/blender/compositor/operations/COM_ColorCurveOperation.h index 65a822508b8..2eb20148db9 100644 --- a/source/blender/compositor/operations/COM_ColorCurveOperation.h +++ b/source/blender/compositor/operations/COM_ColorCurveOperation.h @@ -36,7 +36,7 @@ class ColorCurveOperation : public CurveBaseOperation { ColorCurveOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); @@ -65,7 +65,7 @@ class ConstantLevelColorCurveOperation : public CurveBaseOperation { ConstantLevelColorCurveOperation(); /** - * 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_ColorExposureOperation.h b/source/blender/compositor/operations/COM_ColorExposureOperation.h index 2b5f20f28f0..97590b85d77 100644 --- a/source/blender/compositor/operations/COM_ColorExposureOperation.h +++ b/source/blender/compositor/operations/COM_ColorExposureOperation.h @@ -32,7 +32,7 @@ class ExposureOperation : public NodeOperation { ExposureOperation(); /** - * 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_ColorMatteOperation.h b/source/blender/compositor/operations/COM_ColorMatteOperation.h index bb00c344606..91ba27ce2b6 100644 --- a/source/blender/compositor/operations/COM_ColorMatteOperation.h +++ b/source/blender/compositor/operations/COM_ColorMatteOperation.h @@ -37,7 +37,7 @@ class ColorMatteOperation : public NodeOperation { ColorMatteOperation(); /** - * 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_ColorRampOperation.h b/source/blender/compositor/operations/COM_ColorRampOperation.h index b4253a3f074..49bdb266ce9 100644 --- a/source/blender/compositor/operations/COM_ColorRampOperation.h +++ b/source/blender/compositor/operations/COM_ColorRampOperation.h @@ -33,7 +33,7 @@ class ColorRampOperation : public NodeOperation { ColorRampOperation(); /** - * 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_ColorSpillOperation.h b/source/blender/compositor/operations/COM_ColorSpillOperation.h index 560d198693f..e51101adf84 100644 --- a/source/blender/compositor/operations/COM_ColorSpillOperation.h +++ b/source/blender/compositor/operations/COM_ColorSpillOperation.h @@ -42,7 +42,7 @@ class ColorSpillOperation : public NodeOperation { ColorSpillOperation(); /** - * 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_ConvertColorProfileOperation.h b/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h index 8fce5ef3e1a..7b96895d845 100644 --- a/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h +++ b/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h @@ -53,7 +53,7 @@ class ConvertColorProfileOperation : public NodeOperation { ConvertColorProfileOperation(); /** - * 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_ConvertDepthToRadiusOperation.h b/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h index 3babcfe4dc3..564a0facec7 100644 --- a/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h +++ b/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h @@ -49,7 +49,7 @@ class ConvertDepthToRadiusOperation : public NodeOperation { ConvertDepthToRadiusOperation(); /** - * 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_DifferenceMatteOperation.h b/source/blender/compositor/operations/COM_DifferenceMatteOperation.h index beaa4400712..0ee5eab3fe7 100644 --- a/source/blender/compositor/operations/COM_DifferenceMatteOperation.h +++ b/source/blender/compositor/operations/COM_DifferenceMatteOperation.h @@ -37,7 +37,7 @@ class DifferenceMatteOperation : public NodeOperation { DifferenceMatteOperation(); /** - * 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_DilateErodeOperation.h b/source/blender/compositor/operations/COM_DilateErodeOperation.h index 95a799ab648..2af5c8990ee 100644 --- a/source/blender/compositor/operations/COM_DilateErodeOperation.h +++ b/source/blender/compositor/operations/COM_DilateErodeOperation.h @@ -41,7 +41,7 @@ class DilateErodeThresholdOperation : public NodeOperation { DilateErodeThresholdOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixel(float output[4], int x, int y, void *data); @@ -88,7 +88,7 @@ class DilateDistanceOperation : public NodeOperation { DilateDistanceOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixel(float output[4], int x, int y, void *data); @@ -123,7 +123,7 @@ class ErodeDistanceOperation : public DilateDistanceOperation { ErodeDistanceOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixel(float output[4], int x, int y, void *data); @@ -148,7 +148,7 @@ class DilateStepOperation : public NodeOperation { DilateStepOperation(); /** - * 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_DirectionalBlurOperation.h b/source/blender/compositor/operations/COM_DirectionalBlurOperation.h index 57fc0bb7fa3..fdb7b82779e 100644 --- a/source/blender/compositor/operations/COM_DirectionalBlurOperation.h +++ b/source/blender/compositor/operations/COM_DirectionalBlurOperation.h @@ -34,7 +34,7 @@ class DirectionalBlurOperation : public NodeOperation, public QualityStepHelper DirectionalBlurOperation(); /** - * 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_DisplaceOperation.h b/source/blender/compositor/operations/COM_DisplaceOperation.h index ee06bf320a6..52874779f73 100644 --- a/source/blender/compositor/operations/COM_DisplaceOperation.h +++ b/source/blender/compositor/operations/COM_DisplaceOperation.h @@ -44,7 +44,7 @@ class DisplaceOperation : public NodeOperation { rcti *output); /** - * 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_DisplaceSimpleOperation.h b/source/blender/compositor/operations/COM_DisplaceSimpleOperation.h index 6930985b0e5..3b850d94750 100644 --- a/source/blender/compositor/operations/COM_DisplaceSimpleOperation.h +++ b/source/blender/compositor/operations/COM_DisplaceSimpleOperation.h @@ -44,7 +44,7 @@ class DisplaceSimpleOperation : public NodeOperation { rcti *output); /** - * 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_DistanceRGBMatteOperation.h b/source/blender/compositor/operations/COM_DistanceRGBMatteOperation.h index d99ab262c18..5c8c2204637 100644 --- a/source/blender/compositor/operations/COM_DistanceRGBMatteOperation.h +++ b/source/blender/compositor/operations/COM_DistanceRGBMatteOperation.h @@ -39,7 +39,7 @@ class DistanceRGBMatteOperation : public NodeOperation { DistanceRGBMatteOperation(); /** - * 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_DoubleEdgeMaskOperation.h b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h index befbf9453a8..e53aa7eb8aa 100644 --- a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h +++ b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h @@ -36,7 +36,7 @@ class DoubleEdgeMaskOperation : public NodeOperation { void doDoubleEdgeMask(float *imask, float *omask, float *res); /** - * 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_EllipseMaskOperation.h b/source/blender/compositor/operations/COM_EllipseMaskOperation.h index 2e6b1f782a1..8fce7166900 100644 --- a/source/blender/compositor/operations/COM_EllipseMaskOperation.h +++ b/source/blender/compositor/operations/COM_EllipseMaskOperation.h @@ -39,7 +39,7 @@ class EllipseMaskOperation : public NodeOperation { EllipseMaskOperation(); /** - * 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_GammaCorrectOperation.h b/source/blender/compositor/operations/COM_GammaCorrectOperation.h index be57e279ac8..077493bbd2f 100644 --- a/source/blender/compositor/operations/COM_GammaCorrectOperation.h +++ b/source/blender/compositor/operations/COM_GammaCorrectOperation.h @@ -31,7 +31,7 @@ class GammaCorrectOperation : public NodeOperation { GammaCorrectOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); @@ -57,7 +57,7 @@ class GammaUncorrectOperation : public NodeOperation { GammaUncorrectOperation(); /** - * 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_GammaOperation.h b/source/blender/compositor/operations/COM_GammaOperation.h index 493fdb1f889..8641f2fde62 100644 --- a/source/blender/compositor/operations/COM_GammaOperation.h +++ b/source/blender/compositor/operations/COM_GammaOperation.h @@ -32,7 +32,7 @@ class GammaOperation : public NodeOperation { GammaOperation(); /** - * 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_GaussianAlphaXBlurOperation.h b/source/blender/compositor/operations/COM_GaussianAlphaXBlurOperation.h index a8e1ddfb885..2d536a98bee 100644 --- a/source/blender/compositor/operations/COM_GaussianAlphaXBlurOperation.h +++ b/source/blender/compositor/operations/COM_GaussianAlphaXBlurOperation.h @@ -34,7 +34,7 @@ class GaussianAlphaXBlurOperation : public BlurBaseOperation { GaussianAlphaXBlurOperation(); /** - * \brief the inner loop of this program + * \brief 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_GaussianAlphaYBlurOperation.h b/source/blender/compositor/operations/COM_GaussianAlphaYBlurOperation.h index df34f15fccc..7f1dfd78e7c 100644 --- a/source/blender/compositor/operations/COM_GaussianAlphaYBlurOperation.h +++ b/source/blender/compositor/operations/COM_GaussianAlphaYBlurOperation.h @@ -34,7 +34,7 @@ class GaussianAlphaYBlurOperation : public BlurBaseOperation { GaussianAlphaYBlurOperation(); /** - * 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_GaussianBokehBlurOperation.h b/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h index b4b5c0e8b2f..a37a70b4b33 100644 --- a/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h +++ b/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h @@ -33,7 +33,7 @@ class GaussianBokehBlurOperation : public BlurBaseOperation { void initExecution(); 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); @@ -62,7 +62,7 @@ class GaussianBlurReferenceOperation : public BlurBaseOperation { void initExecution(); 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_GaussianXBlurOperation.h b/source/blender/compositor/operations/COM_GaussianXBlurOperation.h index 1bd6ef20a48..9348c05f906 100644 --- a/source/blender/compositor/operations/COM_GaussianXBlurOperation.h +++ b/source/blender/compositor/operations/COM_GaussianXBlurOperation.h @@ -34,7 +34,7 @@ class GaussianXBlurOperation : public BlurBaseOperation { GaussianXBlurOperation(); /** - * \brief the inner loop of this program + * \brief 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_GaussianYBlurOperation.h b/source/blender/compositor/operations/COM_GaussianYBlurOperation.h index a9af28791f8..7ab4ecb5506 100644 --- a/source/blender/compositor/operations/COM_GaussianYBlurOperation.h +++ b/source/blender/compositor/operations/COM_GaussianYBlurOperation.h @@ -34,7 +34,7 @@ class GaussianYBlurOperation : public BlurBaseOperation { GaussianYBlurOperation(); /** - * 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_GlareThresholdOperation.h b/source/blender/compositor/operations/COM_GlareThresholdOperation.h index e4ac36f2053..1e55f401ef3 100644 --- a/source/blender/compositor/operations/COM_GlareThresholdOperation.h +++ b/source/blender/compositor/operations/COM_GlareThresholdOperation.h @@ -37,7 +37,7 @@ class GlareThresholdOperation : public NodeOperation { GlareThresholdOperation(); /** - * 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_HueSaturationValueCorrectOperation.h b/source/blender/compositor/operations/COM_HueSaturationValueCorrectOperation.h index f29a932d7f8..dea7eae4a15 100644 --- a/source/blender/compositor/operations/COM_HueSaturationValueCorrectOperation.h +++ b/source/blender/compositor/operations/COM_HueSaturationValueCorrectOperation.h @@ -32,7 +32,7 @@ class HueSaturationValueCorrectOperation : public CurveBaseOperation { HueSaturationValueCorrectOperation(); /** - * 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_InpaintOperation.h b/source/blender/compositor/operations/COM_InpaintOperation.h index 86f3393e1ea..4c43e433dec 100644 --- a/source/blender/compositor/operations/COM_InpaintOperation.h +++ b/source/blender/compositor/operations/COM_InpaintOperation.h @@ -40,7 +40,7 @@ class InpaintSimpleOperation : public NodeOperation { InpaintSimpleOperation(); /** - * 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_InvertOperation.h b/source/blender/compositor/operations/COM_InvertOperation.h index 5399122ab62..ac0b1c3ab2e 100644 --- a/source/blender/compositor/operations/COM_InvertOperation.h +++ b/source/blender/compositor/operations/COM_InvertOperation.h @@ -35,7 +35,7 @@ class InvertOperation : public NodeOperation { InvertOperation(); /** - * 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_LuminanceMatteOperation.h b/source/blender/compositor/operations/COM_LuminanceMatteOperation.h index 2b77b3cde85..2c3a61d8755 100644 --- a/source/blender/compositor/operations/COM_LuminanceMatteOperation.h +++ b/source/blender/compositor/operations/COM_LuminanceMatteOperation.h @@ -36,7 +36,7 @@ class LuminanceMatteOperation : public NodeOperation { LuminanceMatteOperation(); /** - * 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_MapRangeOperation.h b/source/blender/compositor/operations/COM_MapRangeOperation.h index 8656b5539a0..95268d5699f 100644 --- a/source/blender/compositor/operations/COM_MapRangeOperation.h +++ b/source/blender/compositor/operations/COM_MapRangeOperation.h @@ -45,7 +45,7 @@ class MapRangeOperation : public NodeOperation { MapRangeOperation(); /** - * 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_MapUVOperation.h b/source/blender/compositor/operations/COM_MapUVOperation.h index 639b61847c4..66e70a7ab83 100644 --- a/source/blender/compositor/operations/COM_MapUVOperation.h +++ b/source/blender/compositor/operations/COM_MapUVOperation.h @@ -41,7 +41,7 @@ class MapUVOperation : public NodeOperation { rcti *output); /** - * 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_MapValueOperation.h b/source/blender/compositor/operations/COM_MapValueOperation.h index cdbc98bd2a5..3de377ed0fc 100644 --- a/source/blender/compositor/operations/COM_MapValueOperation.h +++ b/source/blender/compositor/operations/COM_MapValueOperation.h @@ -40,7 +40,7 @@ class MapValueOperation : public NodeOperation { MapValueOperation(); /** - * 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_MathBaseOperation.h b/source/blender/compositor/operations/COM_MathBaseOperation.h index f844f668f08..292326caded 100644 --- a/source/blender/compositor/operations/COM_MathBaseOperation.h +++ b/source/blender/compositor/operations/COM_MathBaseOperation.h @@ -45,7 +45,7 @@ class MathBaseOperation : public NodeOperation { public: /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) = 0; diff --git a/source/blender/compositor/operations/COM_MixOperation.h b/source/blender/compositor/operations/COM_MixOperation.h index e597e8af63a..2f6e03ca7a3 100644 --- a/source/blender/compositor/operations/COM_MixOperation.h +++ b/source/blender/compositor/operations/COM_MixOperation.h @@ -50,7 +50,7 @@ class MixBaseOperation : public NodeOperation { MixBaseOperation(); /** - * 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_MovieClipAttributeOperation.h b/source/blender/compositor/operations/COM_MovieClipAttributeOperation.h index 449e5d01a37..50ed6cdb69e 100644 --- a/source/blender/compositor/operations/COM_MovieClipAttributeOperation.h +++ b/source/blender/compositor/operations/COM_MovieClipAttributeOperation.h @@ -48,7 +48,7 @@ class MovieClipAttributeOperation : public NodeOperation { void initExecution(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]); diff --git a/source/blender/compositor/operations/COM_NormalizeOperation.h b/source/blender/compositor/operations/COM_NormalizeOperation.h index 58c03e633e2..8090cf4973b 100644 --- a/source/blender/compositor/operations/COM_NormalizeOperation.h +++ b/source/blender/compositor/operations/COM_NormalizeOperation.h @@ -42,7 +42,7 @@ class NormalizeOperation : public NodeOperation { NormalizeOperation(); /** - * 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_ProjectorLensDistortionOperation.h b/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h index b9290fa1548..96bede20623 100644 --- a/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h +++ b/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h @@ -37,7 +37,7 @@ class ProjectorLensDistortionOperation : public NodeOperation { ProjectorLensDistortionOperation(); /** - * 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_ScreenLensDistortionOperation.h b/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h index f9982d94f60..35d2bccce68 100644 --- a/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h +++ b/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h @@ -47,7 +47,7 @@ class ScreenLensDistortionOperation : public NodeOperation { ScreenLensDistortionOperation(); /** - * 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_SetColorOperation.h b/source/blender/compositor/operations/COM_SetColorOperation.h index 0723ac8a8e4..c61a4e10ac0 100644 --- a/source/blender/compositor/operations/COM_SetColorOperation.h +++ b/source/blender/compositor/operations/COM_SetColorOperation.h @@ -72,7 +72,7 @@ class SetColorOperation : public NodeOperation { } /** - * 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_SetSamplerOperation.h b/source/blender/compositor/operations/COM_SetSamplerOperation.h index c0b5d5a37be..5c1ed9b12d6 100644 --- a/source/blender/compositor/operations/COM_SetSamplerOperation.h +++ b/source/blender/compositor/operations/COM_SetSamplerOperation.h @@ -41,7 +41,7 @@ class SetSamplerOperation : public NodeOperation { } /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); void initExecution(); diff --git a/source/blender/compositor/operations/COM_SetValueOperation.h b/source/blender/compositor/operations/COM_SetValueOperation.h index 6645cd558b2..72cd70ec1f6 100644 --- a/source/blender/compositor/operations/COM_SetValueOperation.h +++ b/source/blender/compositor/operations/COM_SetValueOperation.h @@ -44,7 +44,7 @@ class SetValueOperation : public NodeOperation { } /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]); diff --git a/source/blender/compositor/operations/COM_SetVectorOperation.h b/source/blender/compositor/operations/COM_SetVectorOperation.h index 05c8e6dc56b..4bdd03809de 100644 --- a/source/blender/compositor/operations/COM_SetVectorOperation.h +++ b/source/blender/compositor/operations/COM_SetVectorOperation.h @@ -71,7 +71,7 @@ class SetVectorOperation : public NodeOperation { } /** - * 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_TonemapOperation.h b/source/blender/compositor/operations/COM_TonemapOperation.h index 066332fb7e4..3870593b423 100644 --- a/source/blender/compositor/operations/COM_TonemapOperation.h +++ b/source/blender/compositor/operations/COM_TonemapOperation.h @@ -58,7 +58,7 @@ class TonemapOperation : public NodeOperation { TonemapOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixel(float output[4], int x, int y, void *data); @@ -94,7 +94,7 @@ class TonemapOperation : public NodeOperation { class PhotoreceptorTonemapOperation : public TonemapOperation { public: /** - * 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_VariableSizeBokehBlurOperation.h b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h index 82f41ad68e3..258b5d385c0 100644 --- a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h +++ b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h @@ -39,7 +39,7 @@ class VariableSizeBokehBlurOperation : public NodeOperation, public QualityStepH VariableSizeBokehBlurOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixel(float output[4], int x, int y, void *data); @@ -96,7 +96,7 @@ class InverseSearchRadiusOperation : public NodeOperation { InverseSearchRadiusOperation(); /** - * the inner loop of this program + * The inner loop of this operation. */ void executePixelChunk(float output[4], int x, int y, void *data); diff --git a/source/blender/compositor/operations/COM_VectorBlurOperation.h b/source/blender/compositor/operations/COM_VectorBlurOperation.h index 846b69310bf..222e8b26968 100644 --- a/source/blender/compositor/operations/COM_VectorBlurOperation.h +++ b/source/blender/compositor/operations/COM_VectorBlurOperation.h @@ -42,7 +42,7 @@ class VectorBlurOperation : public NodeOperation, public QualityStepHelper { VectorBlurOperation(); /** - * 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_VectorCurveOperation.h b/source/blender/compositor/operations/COM_VectorCurveOperation.h index 9fa5fe78a4b..cf0d22eca1a 100644 --- a/source/blender/compositor/operations/COM_VectorCurveOperation.h +++ b/source/blender/compositor/operations/COM_VectorCurveOperation.h @@ -32,7 +32,7 @@ class VectorCurveOperation : public CurveBaseOperation { VectorCurveOperation(); /** - * 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_ZCombineOperation.h b/source/blender/compositor/operations/COM_ZCombineOperation.h index 8c6e73f8c55..a64e3c5b70f 100644 --- a/source/blender/compositor/operations/COM_ZCombineOperation.h +++ b/source/blender/compositor/operations/COM_ZCombineOperation.h @@ -41,7 +41,7 @@ class ZCombineOperation : 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); }; -- cgit v1.2.3