"Own" (the adjective) cannot be used on its own. It should be combined with something like "its own", "our own", "her own", or "the object's own". It also isn't used separately to mean something like "separate". Also, "its own" is correct instead of "it's own" which is a misues of the verb.
37 lines
687 B
C
37 lines
687 B
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* clang-format off */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name CacheFile Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_CacheFile \
|
|
{ \
|
|
.filepath[0] = '\0', \
|
|
.override_frame = false, \
|
|
.frame = 0.0f, \
|
|
.is_sequence = false, \
|
|
.scale = 1.0f, \
|
|
.object_paths ={NULL, NULL}, \
|
|
\
|
|
.type = 0, \
|
|
.handle = NULL, \
|
|
.handle_filepath[0] = '\0', \
|
|
.handle_readers = NULL, \
|
|
.use_prefetch = 1, \
|
|
.prefetch_cache_size = 4096, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* clang-format on */
|