Blender V5.0
sequencer/intern/modifiers/MOD_none.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2025 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#include "BLT_translation.hh"
10
11#include "DNA_sequence_types.h"
12
13#include "SEQ_modifier.hh"
14
15namespace blender::seq {
16
18 /*idname*/ "None",
19 /*name*/ CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "None"),
20 /*struct_name*/ "StripModifierData",
21 /*struct_size*/ sizeof(StripModifierData),
22 /*init_data*/ nullptr,
23 /*free_data*/ nullptr,
24 /*copy_data*/ nullptr,
25 /*apply*/ nullptr,
26 /*panel_register*/ nullptr,
27 /*blend_write*/ nullptr,
28 /*blend_read*/ nullptr,
29};
30
31}; // namespace blender::seq
#define CTX_N_(context, msgid)
#define BLT_I18NCONTEXT_ID_SEQUENCE
StripModifierTypeInfo seqModifierType_None