Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/session.h
| Context not available. | |||||
| int2 get_effective_tile_size() const; | int2 get_effective_tile_size() const; | ||||
| void wait_for_rendering_to_finish(); | |||||
| thread *session_thread_; | thread *session_thread_; | ||||
| bool pause_ = false; | bool pause_ = false; | ||||
| bool cancel_ = false; | std::atomic<bool> rendering_ = false; | ||||
| std::atomic<bool> cancel_ = false; | |||||
| bool new_work_added_ = false; | bool new_work_added_ = false; | ||||
| thread_condition_variable pause_cond_; | thread_condition_variable pause_cond_; | ||||
| Context not available. | |||||