2011-05-23 04:43:56 +02:00
|
|
|
/*
|
2011-05-23 05:46:40 +02:00
|
|
|
SchedulerFrontend - access point to the scheduler within the renderengine
|
2011-05-23 04:43:56 +02:00
|
|
|
|
|
|
|
|
Copyright (C) Lumiera.org
|
2011-05-23 05:46:40 +02:00
|
|
|
2011, Hermann Vosseler <Ichthyostega@web.de>
|
2011-05-23 04:43:56 +02:00
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
2016-11-03 18:22:31 +01:00
|
|
|
/** @file scheduler-frontend.cpp
|
2016-11-03 19:37:34 +01:00
|
|
|
** Scheduler service implementation
|
2023-04-14 04:43:39 +02:00
|
|
|
** @warning as of 4/2023 Render-Engine integration work is underway ////////////////////////////////////////TICKET #1280
|
|
|
|
|
**
|
2016-11-03 18:20:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2013-09-01 19:48:17 +02:00
|
|
|
#include "lib/error.h"
|
2018-11-15 23:42:43 +01:00
|
|
|
#include "vault/engine/scheduler-frontend.hpp"
|
2011-05-23 04:43:56 +02:00
|
|
|
|
2018-11-15 23:55:13 +01:00
|
|
|
namespace vault{
|
2011-05-23 04:43:56 +02:00
|
|
|
namespace engine {
|
|
|
|
|
|
|
|
|
|
|
2013-09-01 23:29:57 +02:00
|
|
|
/** storage for the (singleton) scheduler access frontend */
|
2013-10-20 03:19:36 +02:00
|
|
|
lib::Depend<SchedulerFrontend> SchedulerFrontend::instance;
|
2013-09-01 23:29:57 +02:00
|
|
|
|
2011-05-23 04:43:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-01 19:48:17 +02:00
|
|
|
/**
|
|
|
|
|
* Switch the complete engine into diagnostics mode.
|
|
|
|
|
* This activates additional logging and reporting facilities,
|
|
|
|
|
* allowing to verify some specific operations within the engine
|
|
|
|
|
* did indeed happen. Activating this mode incurs a performance hit.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
SchedulerFrontend::activateTracing()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED ("tracing/diagnostics mode of the render engine");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
SchedulerFrontend::disableTracing()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED ("tracing/diagnostics mode of the render engine");
|
|
|
|
|
///////////TODO ensure this is EX_FREE
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-15 23:55:13 +01:00
|
|
|
}} // namespace vault::engine
|