Welcome to mirror list, hosted at ThFree Co, Russian Federation.

depsgraph_update.h « intern « depsgraph « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18f8e6acab648c03aaf7abd05be2bc320c224a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2013 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup depsgraph
 */

#pragma once

struct DEGEditorUpdateContext;
struct ID;

namespace blender {
namespace deg {

void deg_editors_id_update(const DEGEditorUpdateContext *update_ctx, struct ID *id);

void deg_editors_scene_update(const DEGEditorUpdateContext *update_ctx, bool updated);

}  // namespace deg
}  // namespace blender