I Need Help...
-
@d-healey Yo, so I got these errors today. What could it be ?
These are the only lines that have an error in it.
-
@ClawFORGE-Studio Out of heap space again, reduce the number of threads you're using.
-
@ClawFORGE-Studio One thing that I would try doing is compressing the PNG/JPEG using a free online solution like: https://compresspng.com
you would be surprised at how much png images can be compressed!
-
@Noahdeetz Compressing images makes no difference here, they will be loaded into memory at full raw bitmap size no matter the compression used.
-
@d-healey So, what should I do bud?
-
maybe try this option - do you have this selected in your project? Navigate to project settings if you can and find "embed image files"
-
@Noahdeetz I'll give it a try
-
@ClawFORGE-Studio Also, just as a general best practice, it might be worth it to see how much you can get the size of the image down.
Not saying that David is wrong but I did have a similar issue like this (in JUCE, not HISE) where that fixed it.
-
@Noahdeetz Yep it's enabled
-
@ClawFORGE-Studio Then just try compressing the images. It might not work...
-
@Noahdeetz said in I Need Help...:
@ClawFORGE-Studio Then just try compressing the images. It might not work...
Or just remove the images completely to rule them out.
-
@Noahdeetz Alright so I compressed the images and now exporting the Vst. I'll let you know if it worked
-
@Noahdeetz Alright, now it worked!
-
@ClawFORGE-Studio Looks like you're compiling a VST2?
-
@d-healey Yeah, I forgot to turn on the VST3 Support in HISE
-
@ClawFORGE-Studio Nice!
Just for further reference if anyone else looks down this thread. The rationale is that uncompressed images can still gum up a compiler because their conversion to source code (the const char ptr in PresetData.cpp) can bloat the size quite a bit.
-
@Noahdeetz Yo bud, I got some new errors now. I compressed the files and I was able to render 2 other VST's before getting these on the 3rd one.
-
@ClawFORGE-Studio install or disable ipp
-
@d-healey Alright, I tried that and it worked. Thanks buddy :)