ogl_beamforming

Ultrasound Beamforming Implemented with OpenGL
git clone anongit@rnpnr.xyz:ogl_beamforming.git
Log | Files | Refs | Feed | Submodules | LICENSE

Commit: 3bbcadfffdeaf85a29ca7244cdba4a154c8997f1
Parent: c79ed042b3e748e36f1edb830d036af093ae2a6a
Author: Randy Palamar
Date:   Tue, 15 Apr 2025 08:01:00 -0600

ui: copy gamma and log_scale options when duplicating frames

Diffstat:
Mui.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/ui.c b/ui.c @@ -908,6 +908,8 @@ ui_copy_frame(BeamformerUI *ui, Variable *view, RegionSplitDirection direction) bv->needs_update = 1; bv->threshold.u.f32 = old->threshold.u.f32; bv->dynamic_range.u.f32 = old->dynamic_range.u.f32; + bv->gamma.u.f32 = old->gamma.u.f32; + bv->log_scale->u.b32 = old->log_scale->u.b32; bv->min_coordinate = old->frame->min_coordinate; bv->max_coordinate = old->frame->max_coordinate;