2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2004 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2020-11-16 05:02:30 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup sequencer
|
|
|
|
|
*/
|
|
|
|
|
|
2022-01-24 21:16:06 +11:00
|
|
|
struct Scene;
|
2025-01-07 16:35:40 +01:00
|
|
|
struct Strip;
|
2020-11-16 05:02:30 +01:00
|
|
|
|
2025-01-07 14:09:45 +01:00
|
|
|
bool sequencer_seq_generates_image(Strip *strip);
|
2025-01-07 16:03:11 +01:00
|
|
|
void strip_open_anim_file(Scene *scene, Strip *strip, bool openfile);
|