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

|
||||

|
||||
|
||||
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
|
||||
if (!bgImageLoaded) {
|
||||
bgImage = juce::ImageFileFormat::loadFrom(
|
||||
BinaryData::chromaflockbg5_png, BinaryData::chromaflockbg5_pngSize);
|
||||
BinaryData::bg_png, BinaryData::bg_pngSize);
|
||||
bgImageLoaded = true;
|
||||
}
|
||||
if (bgImage.isValid()) {
|
||||
|
|
@ -710,7 +710,7 @@ void MainContentComponent::paint(juce::Graphics& g) {
|
|||
// Load logo
|
||||
if (!logoLoaded) {
|
||||
auto img = juce::ImageFileFormat::loadFrom(
|
||||
BinaryData::cf3d02_png, BinaryData::cf3d02_pngSize);
|
||||
BinaryData::cf3d_png, BinaryData::cf3d_pngSize);
|
||||
if (img.isValid()) {
|
||||
juce::Image::BitmapData bd(img, juce::Image::BitmapData::readOnly);
|
||||
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 |