From 17a2820da8ad8ea23d336129f32e060e5746b047 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 19 Sep 2020 14:32:41 +1000 Subject: Cleanup: consistent TODO/FIXME formatting for names Following the most widely used convention for including todo's in the code, that is: `TODO(name):`, `FIXME(name)` ... etc. --- source/blender/draw/intern/draw_cache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/draw/intern/draw_cache.c') diff --git a/source/blender/draw/intern/draw_cache.c b/source/blender/draw/intern/draw_cache.c index 4d7440a3276..0fbc9e2ed82 100644 --- a/source/blender/draw/intern/draw_cache.c +++ b/source/blender/draw/intern/draw_cache.c @@ -159,7 +159,7 @@ void DRW_shape_cache_free(void) GPUBatch *drw_cache_procedural_points_get(void) { if (!SHC.drw_procedural_verts) { - /* TODO(fclem) get rid of this dummy VBO. */ + /* TODO(fclem): get rid of this dummy VBO. */ GPUVertFormat format = {0}; GPU_vertformat_attr_add(&format, "dummy", GPU_COMP_F32, 1, GPU_FETCH_FLOAT); GPUVertBuf *vbo = GPU_vertbuf_create_with_format(&format); @@ -173,7 +173,7 @@ GPUBatch *drw_cache_procedural_points_get(void) GPUBatch *drw_cache_procedural_lines_get(void) { if (!SHC.drw_procedural_lines) { - /* TODO(fclem) get rid of this dummy VBO. */ + /* TODO(fclem): get rid of this dummy VBO. */ GPUVertFormat format = {0}; GPU_vertformat_attr_add(&format, "dummy", GPU_COMP_F32, 1, GPU_FETCH_FLOAT); GPUVertBuf *vbo = GPU_vertbuf_create_with_format(&format); @@ -187,7 +187,7 @@ GPUBatch *drw_cache_procedural_lines_get(void) GPUBatch *drw_cache_procedural_triangles_get(void) { if (!SHC.drw_procedural_tris) { - /* TODO(fclem) get rid of this dummy VBO. */ + /* TODO(fclem): get rid of this dummy VBO. */ GPUVertFormat format = {0}; GPU_vertformat_attr_add(&format, "dummy", GPU_COMP_F32, 1, GPU_FETCH_FLOAT); GPUVertBuf *vbo = GPU_vertbuf_create_with_format(&format); -- cgit v1.2.3