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')
-rw-r--r--source/blender/compositor/operations/COM_BlurBaseOperation.h2
-rw-r--r--source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h2
-rw-r--r--source/blender/compositor/operations/COM_ReadBufferOperation.h2
-rw-r--r--source/blender/compositor/operations/COM_WrapOperation.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_BlurBaseOperation.h b/source/blender/compositor/operations/COM_BlurBaseOperation.h
index e4ac8b3c874..c452b2e4ea1 100644
--- a/source/blender/compositor/operations/COM_BlurBaseOperation.h
+++ b/source/blender/compositor/operations/COM_BlurBaseOperation.h
@@ -33,7 +33,7 @@ class BlurBaseOperation : public NodeOperation, public QualityStepHelper {
BlurBaseOperation(DataType data_type);
float *make_gausstab(float rad, int size);
#ifdef __SSE2__
- __m128 *convert_gausstab_sse(const float *gaustab, int size);
+ __m128 *convert_gausstab_sse(const float *gausstab, int size);
#endif
float *make_dist_fac_inverse(float rad, int size, int falloff);
diff --git a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
index 0c77e83daec..befbf9453a8 100644
--- a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
+++ b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
@@ -34,7 +34,7 @@ class DoubleEdgeMaskOperation : public NodeOperation {
public:
DoubleEdgeMaskOperation();
- void doDoubleEdgeMask(float *inner, float *outer, float *res);
+ void doDoubleEdgeMask(float *imask, float *omask, float *res);
/**
* the inner loop of this program
*/
diff --git a/source/blender/compositor/operations/COM_ReadBufferOperation.h b/source/blender/compositor/operations/COM_ReadBufferOperation.h
index e59cb5449d6..2ada33906ef 100644
--- a/source/blender/compositor/operations/COM_ReadBufferOperation.h
+++ b/source/blender/compositor/operations/COM_ReadBufferOperation.h
@@ -30,7 +30,7 @@ class ReadBufferOperation : public NodeOperation {
MemoryBuffer *m_buffer;
public:
- ReadBufferOperation(DataType datetype);
+ ReadBufferOperation(DataType datatype);
void setMemoryProxy(MemoryProxy *memoryProxy)
{
this->m_memoryProxy = memoryProxy;
diff --git a/source/blender/compositor/operations/COM_WrapOperation.h b/source/blender/compositor/operations/COM_WrapOperation.h
index d1acfb10f25..a72b90e7e94 100644
--- a/source/blender/compositor/operations/COM_WrapOperation.h
+++ b/source/blender/compositor/operations/COM_WrapOperation.h
@@ -25,7 +25,7 @@ class WrapOperation : public ReadBufferOperation {
int m_wrappingType;
public:
- WrapOperation(DataType datetype);
+ WrapOperation(DataType datatype);
bool determineDependingAreaOfInterest(rcti *input,
ReadBufferOperation *readOperation,
rcti *output);