2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Authors
|
2023-08-06 18:57:56 +10:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2023-08-04 15:10:48 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "final_engine.h"
|
|
|
|
|
|
|
|
|
|
namespace blender::render::hydra {
|
|
|
|
|
|
|
|
|
|
class PreviewEngine : public FinalEngine {
|
|
|
|
|
public:
|
|
|
|
|
using FinalEngine::FinalEngine;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void notify_status(float progress, const std::string &title, const std::string &info) override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace blender::render::hydra
|