ogl_beamforming

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

Commit: e7788ed90261d9e8e2c4a4c2b07e9a6c1fb19235
Parent: 4fbadd677b91a6e2b464d87b0a2d6ad88255681e
Author: Randy Palamar
Date:   Sun,  2 Nov 2025 08:57:46 -0700

core: remove uneeded UnmapBuffer call

I think this was from a wip revision of the rf buffer upload
tiling commit. it doesn't do anything because the buffer is
unmapped but we shouldn't keep garbage code laying around

Diffstat:
Mbeamformer.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/beamformer.c b/beamformer.c @@ -1373,7 +1373,6 @@ function void beamformer_rf_buffer_allocate(BeamformerRFBuffer *rf, u32 rf_size, Arena arena) { assert((rf_size % 64) == 0); - glUnmapNamedBuffer(rf->ssbo); glDeleteBuffers(1, &rf->ssbo); glCreateBuffers(1, &rf->ssbo);