This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/draw/intern/draw_pbvh.h

25 lines
408 B
C++

/* 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