ogl_beamforming

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

Commit: b8fe1d5feaef5d9075ad8a840e8abee5e4663cb0
Parent: 17a7ac0037d83e5fc4991117822b675b2a673f9a
Author: Randy Palamar
Date:   Sun,  1 Mar 2026 21:26:35 -0700

core: plan_compute: fix copy paste mistake in DAS layout

Diffstat:
Mbeamformer_core.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/beamformer_core.c b/beamformer_core.c @@ -659,7 +659,7 @@ plan_compute_pipeline(BeamformerComputePlan *cp, BeamformerParameterBlock *pb) }break; case 2:{ - if (has_x && has_y) { sd->layout.x = subgroup_size / 4; sd->layout.x = subgroup_size / 4; } + if (has_x && has_y) { sd->layout.x = subgroup_size / 4; sd->layout.y = subgroup_size / 4; } if (has_x && has_z) { sd->layout.x = subgroup_size / 4; sd->layout.z = subgroup_size / 4; } if (has_y && has_z) { sd->layout.y = subgroup_size / 4; sd->layout.z = subgroup_size / 4; } }break;