Changeset View
Changeset View
Standalone View
Standalone View
source/blender/sequencer/SEQ_sequencer.h
| /* SPDX-License-Identifier: GPL-2.0-or-later | /* SPDX-License-Identifier: GPL-2.0-or-later | ||||
| * Copyright 2004 Blender Foundation. All rights reserved. */ | * Copyright 2004 Blender Foundation. All rights reserved. */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup sequencer | * \ingroup sequencer | ||||
| */ | */ | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| #include "BLI_threads.h" | |||||
| #include "DNA_scene_types.h" | #include "DNA_scene_types.h" | ||||
| struct BlendDataReader; | struct BlendDataReader; | ||||
| struct BlendExpander; | struct BlendExpander; | ||||
| struct BlendLibReader; | struct BlendLibReader; | ||||
| struct BlendWriter; | struct BlendWriter; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct Editing; | struct Editing; | ||||
| ▲ Show 20 Lines • Show All 131 Lines • ▼ Show 20 Lines | |||||
| /** | /** | ||||
| * Find a sequence with a given name. | * Find a sequence with a given name. | ||||
| * | * | ||||
| * \param scene: scene that owns lookup hash | * \param scene: scene that owns lookup hash | ||||
| * \param tag: tag to set | * \param tag: tag to set | ||||
| */ | */ | ||||
| void SEQ_sequence_lookup_tag(const struct Scene *scene, eSequenceLookupTag tag); | void SEQ_sequence_lookup_tag(const struct Scene *scene, eSequenceLookupTag tag); | ||||
| void SEQ_seqbase_lock(void); | |||||
| void SEQ_seqbase_unlock(void); | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||