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 'intern/cycles/render/session.h')
-rw-r--r--intern/cycles/render/session.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/intern/cycles/render/session.h b/intern/cycles/render/session.h
index 3411dcd23c6..18983f55353 100644
--- a/intern/cycles/render/session.h
+++ b/intern/cycles/render/session.h
@@ -107,13 +107,15 @@ public:
void wait();
bool ready_to_reset();
- void reset(int w, int h);
+ void reset(int w, int h, int passes);
+ void set_passes(int passes);
protected:
struct DelayedReset {
thread_mutex mutex;
bool do_reset;
int w, h;
+ int passes;
} delayed_reset;
void run();
@@ -123,15 +125,15 @@ protected:
void tonemap();
void path_trace(Tile& tile);
- void reset_(int w, int h);
+ void reset_(int w, int h, int passes);
void run_cpu();
bool draw_cpu(int w, int h);
- void reset_cpu(int w, int h);
+ void reset_cpu(int w, int h, int passes);
void run_gpu();
bool draw_gpu(int w, int h);
- void reset_gpu(int w, int h);
+ void reset_gpu(int w, int h, int passes);
TileManager tile_manager;
bool device_use_gl;