16 lines
426 B
C++
16 lines
426 B
C++
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
* SPDX-FileCopyrightText: 2011-2022 Blender Foundation */
|
||
|
|
|
||
|
|
#include "preview_engine.h"
|
||
|
|
|
||
|
|
namespace blender::render::hydra {
|
||
|
|
|
||
|
|
void PreviewEngine::notify_status(float /* progress */,
|
||
|
|
const std::string & /* title */,
|
||
|
|
const std::string & /* info */)
|
||
|
|
{
|
||
|
|
/* Empty fucntion */
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace blender::render::hydra
|