ogl_beamforming

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

Commit: 1aa75e3d87324935b92e6470438c45af9662d46c
Parent: 27416203fd14929d6a27472777e32aa4ba80b3ad
Author: Randy Palamar
Date:   Tue, 13 Aug 2024 09:22:36 -0600

shut up raylib mipmap logging

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

diff --git a/beamformer.c b/beamformer.c @@ -607,7 +607,10 @@ do_beamformer(BeamformerCtx *ctx, Arena arena) /* NOTE: regenerate mipmaps only when the output has actually changed */ if (ctx->flags & GEN_MIPMAPS) { + /* NOTE: shut up raylib's reporting on mipmap gen */ + SetTraceLogLevel(LOG_NONE); GenTextureMipmaps(&ctx->fsctx.output.texture); + SetTraceLogLevel(LOG_INFO); ctx->flags &= ~GEN_MIPMAPS; }