Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/mesh_extractors/extract_mesh_ibo_fdots.cc
| Show All 15 Lines | |||||
| * The Original Code is Copyright (C) 2021 by Blender Foundation. | * The Original Code is Copyright (C) 2021 by Blender Foundation. | ||||
| * All rights reserved. | * All rights reserved. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup draw | * \ingroup draw | ||||
| */ | */ | ||||
| #include "draw_cache_extract_mesh_private.h" | |||||
| #include "BLI_vector.hh" | #include "BLI_vector.hh" | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| #include "extract_mesh.h" | |||||
| namespace blender::draw { | namespace blender::draw { | ||||
| /* ---------------------------------------------------------------------- */ | /* ---------------------------------------------------------------------- */ | ||||
| /** \name Extract Face-dots Indices | /** \name Extract Face-dots Indices | ||||
| * \{ */ | * \{ */ | ||||
| static void extract_fdots_init(const MeshRenderData *mr, | static void extract_fdots_init(const MeshRenderData *mr, | ||||
| struct MeshBatchCache *UNUSED(cache), | struct MeshBatchCache *UNUSED(cache), | ||||
| void *UNUSED(buf), | void *UNUSED(buf), | ||||
| ▲ Show 20 Lines • Show All 82 Lines • Show Last 20 Lines | |||||