Welcome to mirror list, hosted at ThFree Co, Russian Federation.

draw_pbvh.h « intern « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e3401d864f7c3daeb05abe373c7211639449347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

#include "DNA_customdata_types.h"

#ifdef __cplusplus
extern "C" {
#endif

struct PBVHBatches;

enum {
  CD_PBVH_CO_TYPE = CD_NUMTYPES,
  CD_PBVH_NO_TYPE = CD_NUMTYPES + 1,
  CD_PBVH_FSET_TYPE = CD_NUMTYPES + 2,
  CD_PBVH_MASK_TYPE = CD_NUMTYPES + 3
};

int drw_pbvh_material_index_get(struct PBVHBatches *batches);

#ifdef __cplusplus
}
#endif