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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/wavefront_obj/importer/obj_import_objects.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/io/wavefront_obj/importer/obj_import_objects.hh b/source/blender/io/wavefront_obj/importer/obj_import_objects.hh
index 76436315465..9f0079d7c53 100644
--- a/source/blender/io/wavefront_obj/importer/obj_import_objects.hh
+++ b/source/blender/io/wavefront_obj/importer/obj_import_objects.hh
@@ -26,10 +26,12 @@ struct GlobalVertices {
Vector<float2> uv_vertices;
Vector<float3> vertex_normals;
- /* Vertex colors might not be present in the file at all, or only
+ /**
+ * Vertex colors might not be present in the file at all, or only
* provided for some meshes. Store them in chunks as they are
* spelled out in the file, e.g. if there are 10 vertices in sequence, all
- * with "xyzrgb" colors, they will be one block. */
+ * with `xyzrgb` colors, they will be one block.
+ */
struct VertexColorsBlock {
Vector<float3> colors;
int start_vertex_index;