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/editors/uvedit/uvedit_smart_stitch.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_smart_stitch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/uvedit/uvedit_smart_stitch.c b/source/blender/editors/uvedit/uvedit_smart_stitch.c
index 0918717e051..71656784947 100644
--- a/source/blender/editors/uvedit/uvedit_smart_stitch.c
+++ b/source/blender/editors/uvedit/uvedit_smart_stitch.c
@@ -76,7 +76,7 @@ typedef struct StitchPreviewer {
float *preview_polys;
/* uvs per polygon. */
uint *uvs_per_polygon;
- /*number of preview polygons */
+ /* Number of preview polygons. */
uint num_polys;
/* preview data. These will be either the previewed vertices or edges
* depending on stitch mode settings */
@@ -1817,7 +1817,7 @@ static void stitch_draw(const bContext *UNUSED(C), ARegion *UNUSED(region), void
/* Closing line */
GPU_vertbuf_attr_set(vbo_line, pos_id, line_idx++, &stitch_preview->preview_polys[index]);
- /* j = uvs_per_polygon[i] - 1*/
+ /* `j = uvs_per_polygon[i] - 1` */
GPU_vertbuf_attr_set(
vbo_line, pos_id, line_idx++, &stitch_preview->preview_polys[index + j * 2]);
@@ -1979,7 +1979,7 @@ static StitchState *stitch_init(bContext *C,
counter++;
state->uvs[counter] = element;
}
- /* pointer arithmetic to the rescue, as always :)*/
+ /* Pointer arithmetic to the rescue, as always :). */
map[element - state->element_map->buf] = counter;
}
}