"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.
34 lines
579 B
C
34 lines
579 B
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* clang-format off */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Image Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_Image \
|
|
{ \
|
|
.aspx = 1.0, \
|
|
.aspy = 1.0, \
|
|
.gen_x = 1024, \
|
|
.gen_y = 1024, \
|
|
.gen_type = IMA_GENTYPE_GRID, \
|
|
\
|
|
.gpuframenr = INT_MAX, \
|
|
.gpu_pass = SHRT_MAX, \
|
|
.gpu_layer = SHRT_MAX, \
|
|
.seam_margin = 8, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* clang-format on */
|