Files
test2/source/blender/draw/engines/select/select_instance.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
525 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup select
*/
2024-01-05 11:16:57 -05:00
#include "DRW_render.hh"
#include "select_engine.hh"
#include "../overlay/overlay_next_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