Ship with a custom blendish.c so we can place fixes on it

This commit is contained in:
falkTX 2021-12-12 16:56:14 +00:00
parent b554380422
commit ccb97ee618
4 changed files with 1228 additions and 11 deletions

1226
src/override/blendish.c Normal file

File diff suppressed because it is too large Load diff

View file

@ -22,15 +22,6 @@
#include "nanovg.h"
// fix blendish build, missing symbol in debug mode
#ifndef NDEBUG
extern "C" {
float bnd_clamp(float v, float mn, float mx) {
return (v > mx)?mx:(v < mn)?mn:v;
}
}
#endif
// fix bogaudio build, another missing symbol
#ifndef NDEBUG
namespace bogaudio {