From debug to release

Hey there, in the process block of a plugin, if I fill one channel of a stereo output buffer in debug mode, it will not output anything until I fill the other side, however in release mode, it works if I fill one channel of the buffer. Is there any reason for this, or should I make sure I always fill both sides, even with 0?

You should always clear or fill all output buffers. You never know what might be in those buffers.

1 Like

thank you