Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/dummy/device.cpp
| Show All 11 Lines | |||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include "device/dummy/device.h" | #include "device/dummy/device.h" | ||||
| #include "device/device.h" | #include "device/device.h" | ||||
| #include "device/device_queue.h" | #include "device/queue.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Dummy device for when creating an appropriate rendering device fails. */ | /* Dummy device for when creating an appropriate rendering device fails. */ | ||||
| class DummyDevice : public Device { | class DummyDevice : public Device { | ||||
| public: | public: | ||||
| DummyDevice(const DeviceInfo &info_, Stats &stats_, Profiler &profiler_) | DummyDevice(const DeviceInfo &info_, Stats &stats_, Profiler &profiler_) | ||||
| ▲ Show 20 Lines • Show All 45 Lines • Show Last 20 Lines | |||||