Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/draw_cache_impl.h
| Show All 14 Lines | |||||
| * | * | ||||
| * Copyright 2016, Blender Foundation. | * Copyright 2016, Blender Foundation. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup draw | * \ingroup draw | ||||
| */ | */ | ||||
| #ifndef __DRAW_CACHE_IMPL_H__ | #pragma once | ||||
| #define __DRAW_CACHE_IMPL_H__ | |||||
| struct GPUBatch; | struct GPUBatch; | ||||
| struct GPUIndexBuf; | struct GPUIndexBuf; | ||||
| struct GPUMaterial; | struct GPUMaterial; | ||||
| struct GPUVertBuf; | struct GPUVertBuf; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct ModifierData; | struct ModifierData; | ||||
| struct PTCacheEdit; | struct PTCacheEdit; | ||||
| ▲ Show 20 Lines • Show All 216 Lines • ▼ Show 20 Lines | struct GPUBatch *DRW_particles_batch_cache_get_edit_strands(struct Object *object, | ||||
| struct PTCacheEdit *edit, | struct PTCacheEdit *edit, | ||||
| bool use_weight); | bool use_weight); | ||||
| struct GPUBatch *DRW_particles_batch_cache_get_edit_inner_points(struct Object *object, | struct GPUBatch *DRW_particles_batch_cache_get_edit_inner_points(struct Object *object, | ||||
| struct ParticleSystem *psys, | struct ParticleSystem *psys, | ||||
| struct PTCacheEdit *edit); | struct PTCacheEdit *edit); | ||||
| struct GPUBatch *DRW_particles_batch_cache_get_edit_tip_points(struct Object *object, | struct GPUBatch *DRW_particles_batch_cache_get_edit_tip_points(struct Object *object, | ||||
| struct ParticleSystem *psys, | struct ParticleSystem *psys, | ||||
| struct PTCacheEdit *edit); | struct PTCacheEdit *edit); | ||||
| #endif /* __DRAW_CACHE_IMPL_H__ */ | |||||