rename image files
|
|
@ -22,8 +22,8 @@ endif()
|
||||||
juce_add_binary_data(ChromaFlockBinaryData
|
juce_add_binary_data(ChromaFlockBinaryData
|
||||||
NAMESPACE BinaryData
|
NAMESPACE BinaryData
|
||||||
SOURCES
|
SOURCES
|
||||||
chromaflockbg5.png
|
bg.png
|
||||||
cf3d02.png
|
cf3d.png
|
||||||
)
|
)
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# ChromaFlock
|
# ChromaFlock
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A subtractive synthesizer plugin built with [JUCE](https://juce.com). macOS (VST3, AU, Standalone) and Linux (VST3, Standalone).
|
A subtractive synthesizer plugin built with [JUCE](https://juce.com). macOS (VST3, AU, Standalone) and Linux (VST3, Standalone).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -691,7 +691,7 @@ void MainContentComponent::paint(juce::Graphics& g) {
|
||||||
// Draw background image tiled
|
// Draw background image tiled
|
||||||
if (!bgImageLoaded) {
|
if (!bgImageLoaded) {
|
||||||
bgImage = juce::ImageFileFormat::loadFrom(
|
bgImage = juce::ImageFileFormat::loadFrom(
|
||||||
BinaryData::chromaflockbg5_png, BinaryData::chromaflockbg5_pngSize);
|
BinaryData::bg_png, BinaryData::bg_pngSize);
|
||||||
bgImageLoaded = true;
|
bgImageLoaded = true;
|
||||||
}
|
}
|
||||||
if (bgImage.isValid()) {
|
if (bgImage.isValid()) {
|
||||||
|
|
@ -710,7 +710,7 @@ void MainContentComponent::paint(juce::Graphics& g) {
|
||||||
// Load logo
|
// Load logo
|
||||||
if (!logoLoaded) {
|
if (!logoLoaded) {
|
||||||
auto img = juce::ImageFileFormat::loadFrom(
|
auto img = juce::ImageFileFormat::loadFrom(
|
||||||
BinaryData::cf3d02_png, BinaryData::cf3d02_pngSize);
|
BinaryData::cf3d_png, BinaryData::cf3d_pngSize);
|
||||||
if (img.isValid()) {
|
if (img.isValid()) {
|
||||||
juce::Image::BitmapData bd(img, juce::Image::BitmapData::readOnly);
|
juce::Image::BitmapData bd(img, juce::Image::BitmapData::readOnly);
|
||||||
int minX = bd.width, maxX = 0, minY = bd.height, maxY = 0;
|
int minX = bd.width, maxX = 0, minY = bd.height, maxY = 0;
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 587 KiB After Width: | Height: | Size: 587 KiB |
|
Before Width: | Height: | Size: 230 KiB After Width: | Height: | Size: 230 KiB |
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 250 KiB |