Differential D11791 Diff 40163 source/blender/draw/intern/mesh_extractors/extract_mesh_vbo_fdots_nor.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/mesh_extractors/extract_mesh_vbo_fdots_nor.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 "extract_mesh.h" | ||||
| namespace blender::draw { | namespace blender::draw { | ||||
| /* ---------------------------------------------------------------------- */ | /* ---------------------------------------------------------------------- */ | ||||
| /** \name Extract Face-dots Normal and edit flag | /** \name Extract Face-dots Normal and edit flag | ||||
| * \{ */ | * \{ */ | ||||
| #define NOR_AND_FLAG_DEFAULT 0 | #define NOR_AND_FLAG_DEFAULT 0 | ||||
| #define NOR_AND_FLAG_SELECT 1 | #define NOR_AND_FLAG_SELECT 1 | ||||
| ▲ Show 20 Lines • Show All 168 Lines • Show Last 20 Lines | |||||