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

deg_eval_runtime_backup_gpencil.h « eval « intern « depsgraph « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68eff01fd6085b0566ce747bd85a82cfc4501c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2022 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup depsgraph
 */

#pragma once

struct bGPdata;

namespace blender {
namespace deg {

struct Depsgraph;

/* Backup of volume datablocks runtime data. */
class GPencilBackup {
 public:
  GPencilBackup(const Depsgraph *depsgraph);

  void init_from_gpencil(bGPdata *gpd);
  void restore_to_gpencil(bGPdata *gpd);

  const Depsgraph *depsgraph;
};

}  // namespace deg
}  // namespace blender