This is supposed to hold the latest improvement from the EEVEE rewrite branch. Note that a restart is necessary in order for the engine to appear. The registration code is a bit convoluted as it needs to be after the WM_init.
20 lines
313 B
C++
20 lines
313 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2016 Blender Foundation. */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern DrawEngineType draw_engine_eevee_next_type;
|
|
extern RenderEngineType DRW_engine_viewport_eevee_next_type;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|