ogl_beamforming

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

Commit: 5b27cb186161295388c2b9b67f14cd1646c31801
Parent: c880d8118d965d5898e6295a19aade47ca05e66c
Author: Randy Palamar
Date:   Thu, 10 Sep 2026 05:24:03 -0700

lib: set timeout in beamformer_beamform_data

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

diff --git a/lib/ogl_beamformer_lib.c b/lib/ogl_beamformer_lib.c @@ -699,6 +699,8 @@ beamformer_beamform_data(BeamformerSimpleParameters *bp, void *data, uint32_t da { b32 result = beamformer_push_simple_parameters(bp); if (result) { + beamformer_set_global_timeout(timeout_ms); + iv3 output_points = bp->output_points.xyz; output_points.E[0] = Max(1, output_points.E[0]); output_points.E[1] = Max(1, output_points.E[1]);