Files
test/source/blender/depsgraph/intern/depsgraph_update.hh
Hans Goudey 8a9dad1f2c Cleanup: Remove unnecessary struct keyword from newly C++ headers
Also remove `void` in `(void)`.
2023-09-22 08:08:19 -04:00

21 lines
416 B
C++

/* SPDX-FileCopyrightText: 2013 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup depsgraph
*/
#pragma once
struct DEGEditorUpdateContext;
struct ID;
namespace blender::deg {
void deg_editors_id_update(const DEGEditorUpdateContext *update_ctx, ID *id);
void deg_editors_scene_update(const DEGEditorUpdateContext *update_ctx, bool updated);
} // namespace blender::deg