Blender V4.3
DNA_cachefile_defaults.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11/* clang-format off */
12
13/* -------------------------------------------------------------------- */
17#define _DNA_DEFAULT_CacheFile \
18 { \
19 .filepath[0] = '\0', \
20 .override_frame = false, \
21 .frame = 0.0f, \
22 .is_sequence = false, \
23 .scale = 1.0f, \
24 .object_paths ={NULL, NULL}, \
25 \
26 .type = 0, \
27 .handle = NULL, \
28 .handle_filepath[0] = '\0', \
29 .handle_readers = NULL, \
30 .use_prefetch = 1, \
31 .prefetch_cache_size = 4096, \
32 }
33
36/* clang-format on */