23 lines
385 B
C++
23 lines
385 B
C++
/* SPDX-FileCopyrightText: 2004 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup sequencer
|
|
*/
|
|
|
|
namespace blender {
|
|
|
|
struct Scene;
|
|
struct Strip;
|
|
|
|
namespace seq {
|
|
|
|
bool sequencer_strip_generates_image(Strip *strip);
|
|
void strip_open_anim_file(Scene *scene, Strip *strip, bool openfile);
|
|
|
|
} // namespace seq
|
|
} // namespace blender
|