Files
test/source/blender/draw/engines/select/select_instance.cc
Clément Foucault 5bd572d4fd Cleanup: Overlay: Remove _next in overlay filename
These are not needed anymore since the legacy codebase
is gone.
2025-04-16 20:51:24 +02:00

29 lines
520 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup select
*/
#include "DRW_render.hh"
#include "select_engine.hh"
#include "../overlay/overlay_instance.hh"
#include "select_instance.hh"
namespace blender::draw::select {
class Instance : public overlay::Instance {
public:
Instance() : overlay::Instance(SelectionType::ENABLED){};
};
DrawEngine *Engine::create_instance()
{
return new Instance();
}
} // namespace blender::draw::select