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/operations/COM_VariableSizeBokehBlurOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
index 110bb6b4952..57ffde6d398 100644
--- a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
+++ b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
@@ -46,23 +46,23 @@ public:
* the inner loop of this program
*/
void executePixel(float output[4], int x, int y, void *data);
-
+
/**
* Initialize the execution
*/
void initExecution();
-
+
void *initializeTileData(rcti *rect);
-
+
void deinitializeTileData(rcti *rect, void *data);
-
+
/**
* Deinitialize the execution
*/
void deinitExecution();
-
+
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
-
+
void setMaxBlur(int maxRadius) { this->m_maxBlur = maxRadius; }
void setThreshold(float threshold) { this->m_threshold = threshold; }
@@ -79,29 +79,29 @@ private:
SocketReader *m_inputRadius;
public:
static const int DIVIDER = 4;
-
+
InverseSearchRadiusOperation();
/**
* the inner loop of this program
*/
void executePixelChunk(float output[4], int x, int y, void *data);
-
+
/**
* Initialize the execution
*/
void initExecution();
void *initializeTileData(rcti *rect);
void deinitializeTileData(rcti *rect, void *data);
-
+
/**
* Deinitialize the execution
*/
void deinitExecution();
-
+
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]);
-
+
void setMaxBlur(int maxRadius) { this->m_maxBlur = maxRadius; }
};
#endif