diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-09-05 06:23:39 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-09-05 06:23:39 -0700 |
commit | 2378632dbbb6ed1ba563429aaa2fce79ff8e9ff8 (patch) | |
tree | f88de158c598eb4328e2a4c277811f1559c56e9c | |
parent | 57bae7f5d4fe10f65a21b02ac0a6d5b372b9fbb9 (diff) |
modules/flow: add "(threaded)" label
The convention has been to label threaded modules in their
description.
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | src/modules/flow/flow.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -54,7 +54,7 @@ Quickly jump sections of this text by searching forward/reverse for --- 1: checkers: Checker-patterned overlay (threaded) 2: compose: Layered modules compositor 3: drizzle: Classic 2D rain effect (threaded (poorly)) - 4: flow: 3D flow field + 4: flow: 3D flow field (threaded) 5: flui2d: Fluid dynamics simulation in 2D (threaded (poorly)) 6: julia: Julia set fractal morpher (threaded) 7: meta2d: Classic 2D metaballs (threaded) diff --git a/src/modules/flow/flow.c b/src/modules/flow/flow.c index 6f68ad6..321bf86 100644 --- a/src/modules/flow/flow.c +++ b/src/modules/flow/flow.c @@ -401,7 +401,7 @@ til_module_t flow_module = { .finish_frame = flow_finish_frame, .setup = flow_setup, .name = "flow", - .description = "3D flow field", + .description = "3D flow field (threaded)", .author = "Vito Caputo <vcaputo@pengaru.com>", .flags = TIL_MODULE_OVERLAYABLE, }; |