Files
test/source/blender/blenkernel/intern/multires_unsubdivide.hh
Campbell Barton e955c94ed3 License Headers: Set copyright to "Blender Authors", add AUTHORS
Listing the "Blender Foundation" as copyright holder implied the Blender
Foundation holds copyright to files which may include work from many
developers.

While keeping copyright on headers makes sense for isolated libraries,
Blender's own code may be refactored or moved between files in a way
that makes the per file copyright holders less meaningful.

Copyright references to the "Blender Foundation" have been replaced with
"Blender Authors", with the exception of `./extern/` since these this
contains libraries which are more isolated, any changed to license
headers there can be handled on a case-by-case basis.

Some directories in `./intern/` have also been excluded:

- `./intern/cycles/` it's own `AUTHORS` file is planned.
- `./intern/opensubdiv/`.

An "AUTHORS" file has been added, using the chromium projects authors
file as a template.

Design task: #110784

Ref !110783.
2023-08-16 00:20:26 +10:00

74 lines
1.9 KiB
C++

/* SPDX-FileCopyrightText: 2020 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bke
*/
#pragma once
#include "BLI_sys_types.h"
struct BMesh;
struct Mesh;
struct MultiresModifierData;
struct MultiresUnsubdivideGrid {
/* For sanity checks. */
int grid_index;
int grid_size;
/** Grid coordinates in object space. */
float (*grid_co)[3];
};
struct MultiresUnsubdivideContext {
/* Input Mesh to un-subdivide. */
Mesh *original_mesh;
MDisps *original_mdisp;
/** Number of subdivision in the grids of the input mesh. */
int num_original_levels;
/** Level 0 base mesh after applying the maximum amount of unsubdivisions. */
Mesh *base_mesh;
/** Limit on how many levels down the unsubdivide operation should create, if possible. */
int max_new_levels;
/** New levels that were created after unsubdividing. */
int num_new_levels;
/**
* Number of subdivisions that should be applied to the base mesh.
* (num_new_levels + num_original_levels).
*/
int num_total_levels;
/** Data for the new grids, indexed by base mesh loop index. */
int num_grids;
MultiresUnsubdivideGrid *base_mesh_grids;
/* Private data. */
BMesh *bm_original_mesh;
blender::Array<int> loop_to_face_map;
const int *base_to_orig_vmap;
};
/* --------------------------------------------------------------------
* Construct/destruct reshape context.
*/
void multires_unsubdivide_context_init(MultiresUnsubdivideContext *context,
Mesh *original_mesh,
MultiresModifierData *mmd);
void multires_unsubdivide_context_free(MultiresUnsubdivideContext *context);
/* --------------------------------------------------------------------
* Rebuild Lower Subdivisions.
*/
/* Rebuilds all subdivision to the level 0 base mesh. */
bool multires_unsubdivide_to_basemesh(MultiresUnsubdivideContext *context);