Skip to content

Commit

Permalink
Update sources
Browse files Browse the repository at this point in the history
  • Loading branch information
austrianAudioJV committed Oct 17, 2023
1 parent c609415 commit 6c9dac5
Show file tree
Hide file tree
Showing 8 changed files with 2,378 additions and 768 deletions.
2 changes: 1 addition & 1 deletion JuceLibraryCode/AppConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
// juce_audio_plugin_client flags:

#ifndef JUCE_VST3_CAN_REPLACE_VST2
//#define JUCE_VST3_CAN_REPLACE_VST2 1
#define JUCE_VST3_CAN_REPLACE_VST2 0
#endif

#ifndef JUCE_FORCE_USE_LEGACY_PARAM_IDS
Expand Down
513 changes: 513 additions & 0 deletions JuceLibraryCode/BinaryData.cpp

Large diffs are not rendered by default.

90 changes: 90 additions & 0 deletions JuceLibraryCode/BinaryData.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/* =========================================================================================
This is an auto-generated file: Any edits you make may be overwritten!
*/

#pragma once

namespace BinaryData
{
extern const char* austrianAudioLogo_svg;
const int austrianAudioLogo_svgSize = 19242;

extern const char* bandHandleKnob_svg;
const int bandHandleKnob_svgSize = 930;

extern const char* bCardioidPatternIcon_svg;
const int bCardioidPatternIcon_svgSize = 509;

extern const char* cardioidPatternIcon_svg;
const int cardioidPatternIcon_svgSize = 563;

extern const char* closePresetListIcon_svg;
const int closePresetListIcon_svgSize = 302;

extern const char* diffuseField_svg;
const int diffuseField_svgSize = 1820;

extern const char* eightPatternIcon_svg;
const int eightPatternIcon_svgSize = 939;

extern const char* eqFieldCheckSign_svg;
const int eqFieldCheckSign_svgSize = 577;

extern const char* eyeDrop_svg;
const int eyeDrop_svgSize = 2140;

extern const char* freeField_svg;
const int freeField_svgSize = 990;

extern const char* hyperCardioidPatternIcon_svg;
const int hyperCardioidPatternIcon_svgSize = 720;

extern const char* loadArrow_svg;
const int loadArrow_svgSize = 510;

extern const char* maximizeTargetIcon_svg;
const int maximizeTargetIcon_svgSize = 1625;

extern const char* maxTargetToSpillIcon_svg;
const int maxTargetToSpillIcon_svgSize = 747;

extern const char* omniPatternIcon_svg;
const int omniPatternIcon_svgSize = 166;

extern const char* revBCardioidPatternIcon_svg;
const int revBCardioidPatternIcon_svgSize = 520;

extern const char* revCardioidPatternIcon_svg;
const int revCardioidPatternIcon_svgSize = 565;

extern const char* scrollImage_png;
const int scrollImage_pngSize = 6211;

extern const char* superCardioidPatternIcon_svg;
const int superCardioidPatternIcon_svgSize = 725;

extern const char* terminateSpillIcon_svg;
const int terminateSpillIcon_svgSize = 772;

extern const char* undoPresetIcon_svg;
const int undoPresetIcon_svgSize = 752;

// Number of elements in the namedResourceList and originalFileNames arrays.
const int namedResourceListSize = 21;

// Points to the start of a list of resource names.
extern const char* namedResourceList[];

// Points to the start of a list of resource filenames.
extern const char* originalFilenames[];

// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding data and its size (or a null pointer if the name isn't found).
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes);

// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding original, non-mangled filename (or a null pointer if the name isn't found).
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8);
}
1 change: 1 addition & 0 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <juce_gui_extra/juce_gui_extra.h>
#include <juce_opengl/juce_opengl.h>

#include "BinaryData.h"

#if defined (JUCE_PROJUCER_VERSION) && JUCE_PROJUCER_VERSION < JUCE_VERSION
/** If you've hit this error then the version of the Projucer that was used to generate this project is
Expand Down
Loading

0 comments on commit 6c9dac5

Please sign in to comment.