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_MapUVOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_MapUVOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_MapUVOperation.h b/source/blender/compositor/operations/COM_MapUVOperation.h
index 612caab21ad..7025e02e069 100644
--- a/source/blender/compositor/operations/COM_MapUVOperation.h
+++ b/source/blender/compositor/operations/COM_MapUVOperation.h
@@ -29,15 +29,15 @@ class MapUVOperation : public MultiThreadedOperation {
/**
* Cached reference to the inputProgram
*/
- SocketReader *m_inputUVProgram;
- SocketReader *m_inputColorProgram;
+ SocketReader *inputUVProgram_;
+ SocketReader *inputColorProgram_;
int uv_width_;
int uv_height_;
int image_width_;
int image_height_;
- float m_alpha;
+ float alpha_;
std::function<void(float x, float y, float *out)> uv_input_read_fn_;
@@ -72,7 +72,7 @@ class MapUVOperation : public MultiThreadedOperation {
void setAlpha(float alpha)
{
- m_alpha = alpha;
+ alpha_ = alpha;
}
void get_area_of_interest(int input_idx, const rcti &output_area, rcti &r_input_area) override;