Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_CompositorContext.cpp
| Show All 20 Lines | |||||
| */ | */ | ||||
| #include "COM_CompositorContext.h" | #include "COM_CompositorContext.h" | ||||
| #include "COM_defines.h" | #include "COM_defines.h" | ||||
| #include <stdio.h> | #include <stdio.h> | ||||
| CompositorContext::CompositorContext() | CompositorContext::CompositorContext() | ||||
| { | { | ||||
| this->m_scene = NULL; | |||||
| this->m_rd = NULL; | this->m_rd = NULL; | ||||
| this->m_quality = COM_QUALITY_HIGH; | this->m_quality = COM_QUALITY_HIGH; | ||||
| this->m_hasActiveOpenCLDevices = false; | this->m_hasActiveOpenCLDevices = false; | ||||
| this->m_fastCalculation = false; | this->m_fastCalculation = false; | ||||
| this->m_viewSettings = NULL; | this->m_viewSettings = NULL; | ||||
| this->m_displaySettings = NULL; | this->m_displaySettings = NULL; | ||||
| } | } | ||||
| Show All 9 Lines | |||||