├── .clang-format ├── .gitattributes ├── .github └── FUNDING.yml ├── .vscode └── c_cpp_properties.json ├── Extra_Stuff ├── CrossFadeCycleRand │ ├── CrossFadeCycleRandPS.cpp │ └── CrossFadeCycleRandPS.h ├── GradientCycleFastSeg │ ├── GradientCycleFastSegPS.cpp │ └── GradientCycleFastSegPS.h └── ShiftingRainbowSeaSL │ ├── ShiftingRainbowSeaSL.cpp │ └── ShiftingRainbowSeaSL.h ├── LICENSE ├── PixelSporke-workspace.code-workspace ├── README.md ├── component.mk ├── examples ├── Intro Examples │ ├── 1__Basic_Setup │ │ └── 1__Basic_Setup.ino │ ├── 2__2D_Segment_Sets_for_2D_Effects │ │ └── 2__2D_Segment_Sets_for_2D_Effects.ino │ ├── 3__Palettes_and_Utility_Classes │ │ └── 3__Palettes_and_Utility_Classes.ino │ ├── 4__Color_Modes │ │ └── 4__Color_Modes.ino │ ├── 5__Cycling_Multiple_Effects │ │ └── 5__Cycling_Multiple_Effects.ino │ └── 6__Cycling_Using_Effect_Sets │ │ └── 6__Cycling_Using_Effect_Sets.ino └── Other Examples │ ├── Multi_Segment_Sets_and_Mutil_Effects │ └── Multi_Segment_Sets_and_Mutil_Effects.ino │ ├── Segment_Set_Check │ └── Segment_Set_Check.ino │ ├── Simple_Effect_Tester │ └── Simple_Effect_Tester.ino │ └── Temporary_Effects │ └── Temporary_Effects.ino ├── keywords.txt ├── library.properties └── src ├── .vscode └── settings.json ├── ColorUtils ├── colorUtilsPS.cpp └── colorUtilsPS.h ├── Effects ├── Breath │ ├── BreathPS.cpp │ └── BreathPS.h ├── BreathEyeSL │ ├── BreathEyeSL.cpp │ └── BreathEyeSL.h ├── ColorMeltSL │ ├── ColorMeltSL.cpp │ └── ColorMeltSL.h ├── ColorModeFill │ ├── ColorModeFillPS.cpp │ └── ColorModeFillPS.h ├── ColorWipeSLSeg │ ├── ColorWipeSLSeg.cpp │ └── ColorWipeSLSeg.h ├── ColorWipeSeg │ ├── ColorWipeSeg.cpp │ └── ColorWipeSeg.h ├── CrossFadeCycle │ ├── CrossFadeCyclePS.cpp │ └── CrossFadeCyclePS.h ├── DissolveSL │ ├── DissolveSL.cpp │ └── DissolveSL.h ├── DrawPatternSLSeg │ ├── DrawPatternSLSeg.cpp │ └── DrawPatternSLSeg.h ├── EdgeBurstSL │ ├── EdgeBurstSL.cpp │ └── EdgeBurstSL.h ├── EffectBasePS.cpp ├── EffectBasePS.h ├── EmptyEffectPS.cpp ├── EmptyEffectPS.h ├── FairyLightsSLSeg │ ├── FairyLightsSLSeg.cpp │ └── FairyLightsSLSeg.h ├── Fire2012SL │ ├── Fire2012SL.cpp │ └── Fire2012SL.h ├── Fire2012Seg │ ├── Fire2012Seg.cpp │ ├── Fire2012Seg.h │ └── Utils │ │ ├── fire2012UtilsPS.cpp │ │ └── fire2012UtilsPS.h ├── FirefliesSL │ ├── FirefliesSL.cpp │ └── FirefliesSL.h ├── Fireworks │ ├── FireworksPS.cpp │ └── FireworksPS.h ├── GlimmerSL │ ├── GlimmerSL.cpp │ └── GlimmerSL.h ├── GradientCycleFastSL │ ├── GradientCycleFastSL.cpp │ └── GradientCycleFastSL.h ├── GradientCycleSL │ ├── GradientCycleSL.cpp │ └── GradientCycleSL.h ├── LarsonScannerSL │ ├── LarsonScannerSL.cpp │ └── LarsonScannerSL.h ├── Lava │ ├── LavaPS.cpp │ └── LavaPS.h ├── Noise16 │ ├── Noise16PS.cpp │ └── Noise16PS.h ├── NoiseGradSL │ ├── NoiseGradSL.cpp │ └── NoiseGradSL.h ├── NoiseSL │ ├── NoiseSL.cpp │ └── NoiseSL.h ├── NoiseWavesSL │ ├── NoiseWavesSL.cpp │ └── NoiseWavesSL.h ├── Pacifica │ ├── PacificaPS.cpp │ ├── PacificaPS.h │ └── PacificaPalette │ │ ├── pacificaPalettePS.cpp │ │ └── pacificaPalettePS.h ├── PacificaHueSL │ ├── PacificaHuePal │ │ └── PacificaHuePalPS.h │ ├── PacificaHueSL.cpp │ └── PacificaHueSL.h ├── ParticlesSL │ ├── Particle_Stuff │ │ ├── particlePS.h │ │ ├── particleUtilsPS.cpp │ │ └── particleUtilsPS.h │ ├── ParticlesSL.cpp │ └── ParticlesSL.h ├── PatternShifterSL │ ├── PatternShifterSL.cpp │ ├── PatternShifterSL.h │ └── shiftPatternPS.h ├── PatternShifterSeg │ ├── PatternShifterSeg.cpp │ └── PatternShifterSeg.h ├── PlasmaSL │ ├── PlasmaSL.cpp │ └── PlasmaSL.h ├── PoliceStrobeSLSeg │ ├── PoliceStrobeSLSeg.cpp │ └── PoliceStrobeSLSeg.h ├── PrideWPalSL │ ├── PrideWPalSL.cpp │ └── PrideWPalSL.h ├── PrideWPalSL2 │ ├── PrideWPalSL2.cpp │ └── PrideWPalSL2.h ├── RainSL │ ├── RainSL.cpp │ └── RainSL.h ├── RainSeg │ ├── RainSeg.cpp │ └── RainSeg.h ├── RainbowCycle │ ├── RainbowCyclePS.cpp │ └── RainbowCyclePS.h ├── RainbowCycleSLSeg │ ├── RainbowCycleSLSeg.cpp │ └── RainbowCycleSLSeg.h ├── RainbowFontsSL │ ├── RainbowFontsSL.cpp │ └── RainbowFontsSL.h ├── RollingWavesFastSL │ ├── RollingWavesFastSL.cpp │ └── RollingWavesFastSL.h ├── RollingWavesSL │ ├── RollingWavesSL.cpp │ └── RollingWavesSL.h ├── RollingWavesSL2 │ ├── RollingWavesSL2.cpp │ └── RollingWavesSL2.h ├── ScannerSL │ ├── ScannerSL.cpp │ └── ScannerSL.h ├── SegWaves │ ├── SegWaves.cpp │ └── SegWaves.h ├── SegWavesFast │ ├── SegWavesFast.cpp │ └── SegWavesFast.h ├── ShiftingSeaSL │ ├── ShiftingSeaSL.cpp │ ├── ShiftingSeaSL.h │ └── Utils │ │ ├── shiftingSeaUtilsPS.cpp │ │ └── shiftingSeaUtilsPS.h ├── ShimmerSL │ ├── ShimmerSL.cpp │ └── ShimmerSL.h ├── SoftTwinkleSL │ ├── SoftTwinkleSL.cpp │ └── SoftTwinkleSL.h ├── StreamerFastSL │ ├── StreamerFastSL.cpp │ └── StreamerFastSL.h ├── StreamerSL │ ├── StreamerSL.cpp │ └── StreamerSL.h ├── StrobeSLSeg │ ├── StrobeSLSeg.cpp │ └── StrobeSLSeg.h ├── TheaterChaseSL │ ├── TheaterChaseSL.cpp │ └── TheaterChaseSL.h ├── Twinkle2SLSeg │ ├── Twinkle2SLSeg.cpp │ ├── Twinkle2SLSeg.h │ └── twinkleStarPS.h ├── TwinkleFastSL │ ├── TwinkleFastSL.cpp │ └── TwinkleFastSL.h ├── TwinkleSL │ ├── TwinkleSL.cpp │ └── TwinkleSL.h └── XmasLightsSLSeg │ ├── XmasLightsSLSeg.cpp │ └── XmasLightsSLSeg.h ├── GeneralUtils ├── generalUtilsPS.cpp └── generalUtilsPS.h ├── Include_Lists ├── EffectsList.h ├── GlobalVars │ ├── GlobalVars.cpp │ └── GlobalVars.h ├── PaletteFiles.h ├── PatternFiles.h ├── SegmentFiles.h └── UtilsList.h ├── MathUtils ├── mathUtilsPS.cpp └── mathUtilsPS.h ├── Palette_Stuff ├── PaletteList │ ├── paletteListPS.cpp │ └── paletteListPS.h ├── palettePS.h ├── paletteUtilsPS.cpp └── paletteUtilsPS.h ├── Pattern_Stuff ├── patternPS.h ├── patternUtilsPS.cpp └── patternUtilsPS.h ├── Pixel_Spork.h ├── Segment_Stuff ├── SegmentPS.cpp ├── SegmentPS.h ├── SegmentSetPS.cpp ├── SegmentSetPS.h ├── pixelInfoPS.h ├── segDrawUtils.cpp ├── segDrawUtils.h └── segmentSectionsPS.h └── UtilEffects ├── AddGlitter ├── AddGlitterPS.cpp └── AddGlitterPS.h ├── EffectFader ├── EffectFaderPS.cpp └── EffectFaderPS.h ├── EffectSet ├── EffectSetPS.cpp └── EffectSetPS.h ├── EffectSetFader ├── EffectSetFaderPS.cpp └── EffectSetFaderPS.h ├── JustShow ├── JustShowPS.cpp └── JustShowPS.h ├── PaletteBlender ├── PaletteBlenderPS.cpp └── PaletteBlenderPS.h ├── PaletteCycle ├── PaletteCyclePS.cpp └── PaletteCyclePS.h ├── PaletteNoise ├── PaletteNoisePS.cpp └── PaletteNoisePS.h ├── PaletteSingleCycle ├── PaletteSingleCyclePS.cpp └── PaletteSingleCyclePS.h ├── PaletteSlider ├── PaletteSliderPS.cpp └── PaletteSliderPS.h ├── RandRateCtrl ├── RandRateCtrlPS.cpp └── RandRateCtrlPS.h ├── RateCtrl ├── RateCtrlPS.cpp └── RateCtrlPS.h ├── RateNoise ├── RateNoisePS.cpp └── RateNoisePS.h ├── RateRandomizer ├── RateRandomizerPS.cpp └── RateRandomizerPS.h ├── SegOffsetCycler ├── SegOffsetCyclerPS.cpp └── SegOffsetCyclerPS.h └── SegmentSetCheck ├── SegmentSetCheckPS.cpp └── SegmentSetCheckPS.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Extra_Stuff/CrossFadeCycleRand/CrossFadeCycleRandPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/Extra_Stuff/CrossFadeCycleRand/CrossFadeCycleRandPS.cpp -------------------------------------------------------------------------------- /Extra_Stuff/CrossFadeCycleRand/CrossFadeCycleRandPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/Extra_Stuff/CrossFadeCycleRand/CrossFadeCycleRandPS.h -------------------------------------------------------------------------------- /Extra_Stuff/GradientCycleFastSeg/GradientCycleFastSegPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/Extra_Stuff/GradientCycleFastSeg/GradientCycleFastSegPS.cpp -------------------------------------------------------------------------------- /Extra_Stuff/GradientCycleFastSeg/GradientCycleFastSegPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/Extra_Stuff/GradientCycleFastSeg/GradientCycleFastSegPS.h -------------------------------------------------------------------------------- /Extra_Stuff/ShiftingRainbowSeaSL/ShiftingRainbowSeaSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/Extra_Stuff/ShiftingRainbowSeaSL/ShiftingRainbowSeaSL.cpp -------------------------------------------------------------------------------- /Extra_Stuff/ShiftingRainbowSeaSL/ShiftingRainbowSeaSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/Extra_Stuff/ShiftingRainbowSeaSL/ShiftingRainbowSeaSL.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/LICENSE -------------------------------------------------------------------------------- /PixelSporke-workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/PixelSporke-workspace.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/README.md -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Intro Examples/1__Basic_Setup/1__Basic_Setup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Intro Examples/1__Basic_Setup/1__Basic_Setup.ino -------------------------------------------------------------------------------- /examples/Intro Examples/2__2D_Segment_Sets_for_2D_Effects/2__2D_Segment_Sets_for_2D_Effects.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Intro Examples/2__2D_Segment_Sets_for_2D_Effects/2__2D_Segment_Sets_for_2D_Effects.ino -------------------------------------------------------------------------------- /examples/Intro Examples/3__Palettes_and_Utility_Classes/3__Palettes_and_Utility_Classes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Intro Examples/3__Palettes_and_Utility_Classes/3__Palettes_and_Utility_Classes.ino -------------------------------------------------------------------------------- /examples/Intro Examples/4__Color_Modes/4__Color_Modes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Intro Examples/4__Color_Modes/4__Color_Modes.ino -------------------------------------------------------------------------------- /examples/Intro Examples/5__Cycling_Multiple_Effects/5__Cycling_Multiple_Effects.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Intro Examples/5__Cycling_Multiple_Effects/5__Cycling_Multiple_Effects.ino -------------------------------------------------------------------------------- /examples/Intro Examples/6__Cycling_Using_Effect_Sets/6__Cycling_Using_Effect_Sets.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Intro Examples/6__Cycling_Using_Effect_Sets/6__Cycling_Using_Effect_Sets.ino -------------------------------------------------------------------------------- /examples/Other Examples/Multi_Segment_Sets_and_Mutil_Effects/Multi_Segment_Sets_and_Mutil_Effects.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Other Examples/Multi_Segment_Sets_and_Mutil_Effects/Multi_Segment_Sets_and_Mutil_Effects.ino -------------------------------------------------------------------------------- /examples/Other Examples/Segment_Set_Check/Segment_Set_Check.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Other Examples/Segment_Set_Check/Segment_Set_Check.ino -------------------------------------------------------------------------------- /examples/Other Examples/Simple_Effect_Tester/Simple_Effect_Tester.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Other Examples/Simple_Effect_Tester/Simple_Effect_Tester.ino -------------------------------------------------------------------------------- /examples/Other Examples/Temporary_Effects/Temporary_Effects.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/examples/Other Examples/Temporary_Effects/Temporary_Effects.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/library.properties -------------------------------------------------------------------------------- /src/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/.vscode/settings.json -------------------------------------------------------------------------------- /src/ColorUtils/colorUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/ColorUtils/colorUtilsPS.cpp -------------------------------------------------------------------------------- /src/ColorUtils/colorUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/ColorUtils/colorUtilsPS.h -------------------------------------------------------------------------------- /src/Effects/Breath/BreathPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Breath/BreathPS.cpp -------------------------------------------------------------------------------- /src/Effects/Breath/BreathPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Breath/BreathPS.h -------------------------------------------------------------------------------- /src/Effects/BreathEyeSL/BreathEyeSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/BreathEyeSL/BreathEyeSL.cpp -------------------------------------------------------------------------------- /src/Effects/BreathEyeSL/BreathEyeSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/BreathEyeSL/BreathEyeSL.h -------------------------------------------------------------------------------- /src/Effects/ColorMeltSL/ColorMeltSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorMeltSL/ColorMeltSL.cpp -------------------------------------------------------------------------------- /src/Effects/ColorMeltSL/ColorMeltSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorMeltSL/ColorMeltSL.h -------------------------------------------------------------------------------- /src/Effects/ColorModeFill/ColorModeFillPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorModeFill/ColorModeFillPS.cpp -------------------------------------------------------------------------------- /src/Effects/ColorModeFill/ColorModeFillPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorModeFill/ColorModeFillPS.h -------------------------------------------------------------------------------- /src/Effects/ColorWipeSLSeg/ColorWipeSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorWipeSLSeg/ColorWipeSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/ColorWipeSLSeg/ColorWipeSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorWipeSLSeg/ColorWipeSLSeg.h -------------------------------------------------------------------------------- /src/Effects/ColorWipeSeg/ColorWipeSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorWipeSeg/ColorWipeSeg.cpp -------------------------------------------------------------------------------- /src/Effects/ColorWipeSeg/ColorWipeSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ColorWipeSeg/ColorWipeSeg.h -------------------------------------------------------------------------------- /src/Effects/CrossFadeCycle/CrossFadeCyclePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/CrossFadeCycle/CrossFadeCyclePS.cpp -------------------------------------------------------------------------------- /src/Effects/CrossFadeCycle/CrossFadeCyclePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/CrossFadeCycle/CrossFadeCyclePS.h -------------------------------------------------------------------------------- /src/Effects/DissolveSL/DissolveSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/DissolveSL/DissolveSL.cpp -------------------------------------------------------------------------------- /src/Effects/DissolveSL/DissolveSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/DissolveSL/DissolveSL.h -------------------------------------------------------------------------------- /src/Effects/DrawPatternSLSeg/DrawPatternSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/DrawPatternSLSeg/DrawPatternSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/DrawPatternSLSeg/DrawPatternSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/DrawPatternSLSeg/DrawPatternSLSeg.h -------------------------------------------------------------------------------- /src/Effects/EdgeBurstSL/EdgeBurstSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/EdgeBurstSL/EdgeBurstSL.cpp -------------------------------------------------------------------------------- /src/Effects/EdgeBurstSL/EdgeBurstSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/EdgeBurstSL/EdgeBurstSL.h -------------------------------------------------------------------------------- /src/Effects/EffectBasePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/EffectBasePS.cpp -------------------------------------------------------------------------------- /src/Effects/EffectBasePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/EffectBasePS.h -------------------------------------------------------------------------------- /src/Effects/EmptyEffectPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/EmptyEffectPS.cpp -------------------------------------------------------------------------------- /src/Effects/EmptyEffectPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/EmptyEffectPS.h -------------------------------------------------------------------------------- /src/Effects/FairyLightsSLSeg/FairyLightsSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/FairyLightsSLSeg/FairyLightsSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/FairyLightsSLSeg/FairyLightsSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/FairyLightsSLSeg/FairyLightsSLSeg.h -------------------------------------------------------------------------------- /src/Effects/Fire2012SL/Fire2012SL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fire2012SL/Fire2012SL.cpp -------------------------------------------------------------------------------- /src/Effects/Fire2012SL/Fire2012SL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fire2012SL/Fire2012SL.h -------------------------------------------------------------------------------- /src/Effects/Fire2012Seg/Fire2012Seg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fire2012Seg/Fire2012Seg.cpp -------------------------------------------------------------------------------- /src/Effects/Fire2012Seg/Fire2012Seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fire2012Seg/Fire2012Seg.h -------------------------------------------------------------------------------- /src/Effects/Fire2012Seg/Utils/fire2012UtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fire2012Seg/Utils/fire2012UtilsPS.cpp -------------------------------------------------------------------------------- /src/Effects/Fire2012Seg/Utils/fire2012UtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fire2012Seg/Utils/fire2012UtilsPS.h -------------------------------------------------------------------------------- /src/Effects/FirefliesSL/FirefliesSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/FirefliesSL/FirefliesSL.cpp -------------------------------------------------------------------------------- /src/Effects/FirefliesSL/FirefliesSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/FirefliesSL/FirefliesSL.h -------------------------------------------------------------------------------- /src/Effects/Fireworks/FireworksPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fireworks/FireworksPS.cpp -------------------------------------------------------------------------------- /src/Effects/Fireworks/FireworksPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Fireworks/FireworksPS.h -------------------------------------------------------------------------------- /src/Effects/GlimmerSL/GlimmerSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/GlimmerSL/GlimmerSL.cpp -------------------------------------------------------------------------------- /src/Effects/GlimmerSL/GlimmerSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/GlimmerSL/GlimmerSL.h -------------------------------------------------------------------------------- /src/Effects/GradientCycleFastSL/GradientCycleFastSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/GradientCycleFastSL/GradientCycleFastSL.cpp -------------------------------------------------------------------------------- /src/Effects/GradientCycleFastSL/GradientCycleFastSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/GradientCycleFastSL/GradientCycleFastSL.h -------------------------------------------------------------------------------- /src/Effects/GradientCycleSL/GradientCycleSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/GradientCycleSL/GradientCycleSL.cpp -------------------------------------------------------------------------------- /src/Effects/GradientCycleSL/GradientCycleSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/GradientCycleSL/GradientCycleSL.h -------------------------------------------------------------------------------- /src/Effects/LarsonScannerSL/LarsonScannerSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/LarsonScannerSL/LarsonScannerSL.cpp -------------------------------------------------------------------------------- /src/Effects/LarsonScannerSL/LarsonScannerSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/LarsonScannerSL/LarsonScannerSL.h -------------------------------------------------------------------------------- /src/Effects/Lava/LavaPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Lava/LavaPS.cpp -------------------------------------------------------------------------------- /src/Effects/Lava/LavaPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Lava/LavaPS.h -------------------------------------------------------------------------------- /src/Effects/Noise16/Noise16PS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Noise16/Noise16PS.cpp -------------------------------------------------------------------------------- /src/Effects/Noise16/Noise16PS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Noise16/Noise16PS.h -------------------------------------------------------------------------------- /src/Effects/NoiseGradSL/NoiseGradSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/NoiseGradSL/NoiseGradSL.cpp -------------------------------------------------------------------------------- /src/Effects/NoiseGradSL/NoiseGradSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/NoiseGradSL/NoiseGradSL.h -------------------------------------------------------------------------------- /src/Effects/NoiseSL/NoiseSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/NoiseSL/NoiseSL.cpp -------------------------------------------------------------------------------- /src/Effects/NoiseSL/NoiseSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/NoiseSL/NoiseSL.h -------------------------------------------------------------------------------- /src/Effects/NoiseWavesSL/NoiseWavesSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/NoiseWavesSL/NoiseWavesSL.cpp -------------------------------------------------------------------------------- /src/Effects/NoiseWavesSL/NoiseWavesSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/NoiseWavesSL/NoiseWavesSL.h -------------------------------------------------------------------------------- /src/Effects/Pacifica/PacificaPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Pacifica/PacificaPS.cpp -------------------------------------------------------------------------------- /src/Effects/Pacifica/PacificaPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Pacifica/PacificaPS.h -------------------------------------------------------------------------------- /src/Effects/Pacifica/PacificaPalette/pacificaPalettePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Pacifica/PacificaPalette/pacificaPalettePS.cpp -------------------------------------------------------------------------------- /src/Effects/Pacifica/PacificaPalette/pacificaPalettePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Pacifica/PacificaPalette/pacificaPalettePS.h -------------------------------------------------------------------------------- /src/Effects/PacificaHueSL/PacificaHuePal/PacificaHuePalPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PacificaHueSL/PacificaHuePal/PacificaHuePalPS.h -------------------------------------------------------------------------------- /src/Effects/PacificaHueSL/PacificaHueSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PacificaHueSL/PacificaHueSL.cpp -------------------------------------------------------------------------------- /src/Effects/PacificaHueSL/PacificaHueSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PacificaHueSL/PacificaHueSL.h -------------------------------------------------------------------------------- /src/Effects/ParticlesSL/Particle_Stuff/particlePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ParticlesSL/Particle_Stuff/particlePS.h -------------------------------------------------------------------------------- /src/Effects/ParticlesSL/Particle_Stuff/particleUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ParticlesSL/Particle_Stuff/particleUtilsPS.cpp -------------------------------------------------------------------------------- /src/Effects/ParticlesSL/Particle_Stuff/particleUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ParticlesSL/Particle_Stuff/particleUtilsPS.h -------------------------------------------------------------------------------- /src/Effects/ParticlesSL/ParticlesSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ParticlesSL/ParticlesSL.cpp -------------------------------------------------------------------------------- /src/Effects/ParticlesSL/ParticlesSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ParticlesSL/ParticlesSL.h -------------------------------------------------------------------------------- /src/Effects/PatternShifterSL/PatternShifterSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PatternShifterSL/PatternShifterSL.cpp -------------------------------------------------------------------------------- /src/Effects/PatternShifterSL/PatternShifterSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PatternShifterSL/PatternShifterSL.h -------------------------------------------------------------------------------- /src/Effects/PatternShifterSL/shiftPatternPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PatternShifterSL/shiftPatternPS.h -------------------------------------------------------------------------------- /src/Effects/PatternShifterSeg/PatternShifterSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PatternShifterSeg/PatternShifterSeg.cpp -------------------------------------------------------------------------------- /src/Effects/PatternShifterSeg/PatternShifterSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PatternShifterSeg/PatternShifterSeg.h -------------------------------------------------------------------------------- /src/Effects/PlasmaSL/PlasmaSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PlasmaSL/PlasmaSL.cpp -------------------------------------------------------------------------------- /src/Effects/PlasmaSL/PlasmaSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PlasmaSL/PlasmaSL.h -------------------------------------------------------------------------------- /src/Effects/PoliceStrobeSLSeg/PoliceStrobeSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PoliceStrobeSLSeg/PoliceStrobeSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/PoliceStrobeSLSeg/PoliceStrobeSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PoliceStrobeSLSeg/PoliceStrobeSLSeg.h -------------------------------------------------------------------------------- /src/Effects/PrideWPalSL/PrideWPalSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PrideWPalSL/PrideWPalSL.cpp -------------------------------------------------------------------------------- /src/Effects/PrideWPalSL/PrideWPalSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PrideWPalSL/PrideWPalSL.h -------------------------------------------------------------------------------- /src/Effects/PrideWPalSL2/PrideWPalSL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PrideWPalSL2/PrideWPalSL2.cpp -------------------------------------------------------------------------------- /src/Effects/PrideWPalSL2/PrideWPalSL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/PrideWPalSL2/PrideWPalSL2.h -------------------------------------------------------------------------------- /src/Effects/RainSL/RainSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainSL/RainSL.cpp -------------------------------------------------------------------------------- /src/Effects/RainSL/RainSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainSL/RainSL.h -------------------------------------------------------------------------------- /src/Effects/RainSeg/RainSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainSeg/RainSeg.cpp -------------------------------------------------------------------------------- /src/Effects/RainSeg/RainSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainSeg/RainSeg.h -------------------------------------------------------------------------------- /src/Effects/RainbowCycle/RainbowCyclePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainbowCycle/RainbowCyclePS.cpp -------------------------------------------------------------------------------- /src/Effects/RainbowCycle/RainbowCyclePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainbowCycle/RainbowCyclePS.h -------------------------------------------------------------------------------- /src/Effects/RainbowCycleSLSeg/RainbowCycleSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainbowCycleSLSeg/RainbowCycleSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/RainbowCycleSLSeg/RainbowCycleSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainbowCycleSLSeg/RainbowCycleSLSeg.h -------------------------------------------------------------------------------- /src/Effects/RainbowFontsSL/RainbowFontsSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainbowFontsSL/RainbowFontsSL.cpp -------------------------------------------------------------------------------- /src/Effects/RainbowFontsSL/RainbowFontsSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RainbowFontsSL/RainbowFontsSL.h -------------------------------------------------------------------------------- /src/Effects/RollingWavesFastSL/RollingWavesFastSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RollingWavesFastSL/RollingWavesFastSL.cpp -------------------------------------------------------------------------------- /src/Effects/RollingWavesFastSL/RollingWavesFastSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RollingWavesFastSL/RollingWavesFastSL.h -------------------------------------------------------------------------------- /src/Effects/RollingWavesSL/RollingWavesSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RollingWavesSL/RollingWavesSL.cpp -------------------------------------------------------------------------------- /src/Effects/RollingWavesSL/RollingWavesSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RollingWavesSL/RollingWavesSL.h -------------------------------------------------------------------------------- /src/Effects/RollingWavesSL2/RollingWavesSL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RollingWavesSL2/RollingWavesSL2.cpp -------------------------------------------------------------------------------- /src/Effects/RollingWavesSL2/RollingWavesSL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/RollingWavesSL2/RollingWavesSL2.h -------------------------------------------------------------------------------- /src/Effects/ScannerSL/ScannerSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ScannerSL/ScannerSL.cpp -------------------------------------------------------------------------------- /src/Effects/ScannerSL/ScannerSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ScannerSL/ScannerSL.h -------------------------------------------------------------------------------- /src/Effects/SegWaves/SegWaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/SegWaves/SegWaves.cpp -------------------------------------------------------------------------------- /src/Effects/SegWaves/SegWaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/SegWaves/SegWaves.h -------------------------------------------------------------------------------- /src/Effects/SegWavesFast/SegWavesFast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/SegWavesFast/SegWavesFast.cpp -------------------------------------------------------------------------------- /src/Effects/SegWavesFast/SegWavesFast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/SegWavesFast/SegWavesFast.h -------------------------------------------------------------------------------- /src/Effects/ShiftingSeaSL/ShiftingSeaSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ShiftingSeaSL/ShiftingSeaSL.cpp -------------------------------------------------------------------------------- /src/Effects/ShiftingSeaSL/ShiftingSeaSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ShiftingSeaSL/ShiftingSeaSL.h -------------------------------------------------------------------------------- /src/Effects/ShiftingSeaSL/Utils/shiftingSeaUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ShiftingSeaSL/Utils/shiftingSeaUtilsPS.cpp -------------------------------------------------------------------------------- /src/Effects/ShiftingSeaSL/Utils/shiftingSeaUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ShiftingSeaSL/Utils/shiftingSeaUtilsPS.h -------------------------------------------------------------------------------- /src/Effects/ShimmerSL/ShimmerSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ShimmerSL/ShimmerSL.cpp -------------------------------------------------------------------------------- /src/Effects/ShimmerSL/ShimmerSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/ShimmerSL/ShimmerSL.h -------------------------------------------------------------------------------- /src/Effects/SoftTwinkleSL/SoftTwinkleSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/SoftTwinkleSL/SoftTwinkleSL.cpp -------------------------------------------------------------------------------- /src/Effects/SoftTwinkleSL/SoftTwinkleSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/SoftTwinkleSL/SoftTwinkleSL.h -------------------------------------------------------------------------------- /src/Effects/StreamerFastSL/StreamerFastSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/StreamerFastSL/StreamerFastSL.cpp -------------------------------------------------------------------------------- /src/Effects/StreamerFastSL/StreamerFastSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/StreamerFastSL/StreamerFastSL.h -------------------------------------------------------------------------------- /src/Effects/StreamerSL/StreamerSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/StreamerSL/StreamerSL.cpp -------------------------------------------------------------------------------- /src/Effects/StreamerSL/StreamerSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/StreamerSL/StreamerSL.h -------------------------------------------------------------------------------- /src/Effects/StrobeSLSeg/StrobeSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/StrobeSLSeg/StrobeSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/StrobeSLSeg/StrobeSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/StrobeSLSeg/StrobeSLSeg.h -------------------------------------------------------------------------------- /src/Effects/TheaterChaseSL/TheaterChaseSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/TheaterChaseSL/TheaterChaseSL.cpp -------------------------------------------------------------------------------- /src/Effects/TheaterChaseSL/TheaterChaseSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/TheaterChaseSL/TheaterChaseSL.h -------------------------------------------------------------------------------- /src/Effects/Twinkle2SLSeg/Twinkle2SLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Twinkle2SLSeg/Twinkle2SLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/Twinkle2SLSeg/Twinkle2SLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Twinkle2SLSeg/Twinkle2SLSeg.h -------------------------------------------------------------------------------- /src/Effects/Twinkle2SLSeg/twinkleStarPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/Twinkle2SLSeg/twinkleStarPS.h -------------------------------------------------------------------------------- /src/Effects/TwinkleFastSL/TwinkleFastSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/TwinkleFastSL/TwinkleFastSL.cpp -------------------------------------------------------------------------------- /src/Effects/TwinkleFastSL/TwinkleFastSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/TwinkleFastSL/TwinkleFastSL.h -------------------------------------------------------------------------------- /src/Effects/TwinkleSL/TwinkleSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/TwinkleSL/TwinkleSL.cpp -------------------------------------------------------------------------------- /src/Effects/TwinkleSL/TwinkleSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/TwinkleSL/TwinkleSL.h -------------------------------------------------------------------------------- /src/Effects/XmasLightsSLSeg/XmasLightsSLSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/XmasLightsSLSeg/XmasLightsSLSeg.cpp -------------------------------------------------------------------------------- /src/Effects/XmasLightsSLSeg/XmasLightsSLSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Effects/XmasLightsSLSeg/XmasLightsSLSeg.h -------------------------------------------------------------------------------- /src/GeneralUtils/generalUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/GeneralUtils/generalUtilsPS.cpp -------------------------------------------------------------------------------- /src/GeneralUtils/generalUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/GeneralUtils/generalUtilsPS.h -------------------------------------------------------------------------------- /src/Include_Lists/EffectsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Include_Lists/EffectsList.h -------------------------------------------------------------------------------- /src/Include_Lists/GlobalVars/GlobalVars.cpp: -------------------------------------------------------------------------------- 1 | #include "GlobalVars.h" 2 | 3 | bool alwaysResizeObj_PS = false; -------------------------------------------------------------------------------- /src/Include_Lists/GlobalVars/GlobalVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Include_Lists/GlobalVars/GlobalVars.h -------------------------------------------------------------------------------- /src/Include_Lists/PaletteFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Include_Lists/PaletteFiles.h -------------------------------------------------------------------------------- /src/Include_Lists/PatternFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Include_Lists/PatternFiles.h -------------------------------------------------------------------------------- /src/Include_Lists/SegmentFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Include_Lists/SegmentFiles.h -------------------------------------------------------------------------------- /src/Include_Lists/UtilsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Include_Lists/UtilsList.h -------------------------------------------------------------------------------- /src/MathUtils/mathUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/MathUtils/mathUtilsPS.cpp -------------------------------------------------------------------------------- /src/MathUtils/mathUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/MathUtils/mathUtilsPS.h -------------------------------------------------------------------------------- /src/Palette_Stuff/PaletteList/paletteListPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Palette_Stuff/PaletteList/paletteListPS.cpp -------------------------------------------------------------------------------- /src/Palette_Stuff/PaletteList/paletteListPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Palette_Stuff/PaletteList/paletteListPS.h -------------------------------------------------------------------------------- /src/Palette_Stuff/palettePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Palette_Stuff/palettePS.h -------------------------------------------------------------------------------- /src/Palette_Stuff/paletteUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Palette_Stuff/paletteUtilsPS.cpp -------------------------------------------------------------------------------- /src/Palette_Stuff/paletteUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Palette_Stuff/paletteUtilsPS.h -------------------------------------------------------------------------------- /src/Pattern_Stuff/patternPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Pattern_Stuff/patternPS.h -------------------------------------------------------------------------------- /src/Pattern_Stuff/patternUtilsPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Pattern_Stuff/patternUtilsPS.cpp -------------------------------------------------------------------------------- /src/Pattern_Stuff/patternUtilsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Pattern_Stuff/patternUtilsPS.h -------------------------------------------------------------------------------- /src/Pixel_Spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Pixel_Spork.h -------------------------------------------------------------------------------- /src/Segment_Stuff/SegmentPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/SegmentPS.cpp -------------------------------------------------------------------------------- /src/Segment_Stuff/SegmentPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/SegmentPS.h -------------------------------------------------------------------------------- /src/Segment_Stuff/SegmentSetPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/SegmentSetPS.cpp -------------------------------------------------------------------------------- /src/Segment_Stuff/SegmentSetPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/SegmentSetPS.h -------------------------------------------------------------------------------- /src/Segment_Stuff/pixelInfoPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/pixelInfoPS.h -------------------------------------------------------------------------------- /src/Segment_Stuff/segDrawUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/segDrawUtils.cpp -------------------------------------------------------------------------------- /src/Segment_Stuff/segDrawUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/segDrawUtils.h -------------------------------------------------------------------------------- /src/Segment_Stuff/segmentSectionsPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/Segment_Stuff/segmentSectionsPS.h -------------------------------------------------------------------------------- /src/UtilEffects/AddGlitter/AddGlitterPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/AddGlitter/AddGlitterPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/AddGlitter/AddGlitterPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/AddGlitter/AddGlitterPS.h -------------------------------------------------------------------------------- /src/UtilEffects/EffectFader/EffectFaderPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/EffectFader/EffectFaderPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/EffectFader/EffectFaderPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/EffectFader/EffectFaderPS.h -------------------------------------------------------------------------------- /src/UtilEffects/EffectSet/EffectSetPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/EffectSet/EffectSetPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/EffectSet/EffectSetPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/EffectSet/EffectSetPS.h -------------------------------------------------------------------------------- /src/UtilEffects/EffectSetFader/EffectSetFaderPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/EffectSetFader/EffectSetFaderPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/EffectSetFader/EffectSetFaderPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/EffectSetFader/EffectSetFaderPS.h -------------------------------------------------------------------------------- /src/UtilEffects/JustShow/JustShowPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/JustShow/JustShowPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/JustShow/JustShowPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/JustShow/JustShowPS.h -------------------------------------------------------------------------------- /src/UtilEffects/PaletteBlender/PaletteBlenderPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteBlender/PaletteBlenderPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/PaletteBlender/PaletteBlenderPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteBlender/PaletteBlenderPS.h -------------------------------------------------------------------------------- /src/UtilEffects/PaletteCycle/PaletteCyclePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteCycle/PaletteCyclePS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/PaletteCycle/PaletteCyclePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteCycle/PaletteCyclePS.h -------------------------------------------------------------------------------- /src/UtilEffects/PaletteNoise/PaletteNoisePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteNoise/PaletteNoisePS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/PaletteNoise/PaletteNoisePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteNoise/PaletteNoisePS.h -------------------------------------------------------------------------------- /src/UtilEffects/PaletteSingleCycle/PaletteSingleCyclePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteSingleCycle/PaletteSingleCyclePS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/PaletteSingleCycle/PaletteSingleCyclePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteSingleCycle/PaletteSingleCyclePS.h -------------------------------------------------------------------------------- /src/UtilEffects/PaletteSlider/PaletteSliderPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteSlider/PaletteSliderPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/PaletteSlider/PaletteSliderPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/PaletteSlider/PaletteSliderPS.h -------------------------------------------------------------------------------- /src/UtilEffects/RandRateCtrl/RandRateCtrlPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RandRateCtrl/RandRateCtrlPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/RandRateCtrl/RandRateCtrlPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RandRateCtrl/RandRateCtrlPS.h -------------------------------------------------------------------------------- /src/UtilEffects/RateCtrl/RateCtrlPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RateCtrl/RateCtrlPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/RateCtrl/RateCtrlPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RateCtrl/RateCtrlPS.h -------------------------------------------------------------------------------- /src/UtilEffects/RateNoise/RateNoisePS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RateNoise/RateNoisePS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/RateNoise/RateNoisePS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RateNoise/RateNoisePS.h -------------------------------------------------------------------------------- /src/UtilEffects/RateRandomizer/RateRandomizerPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RateRandomizer/RateRandomizerPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/RateRandomizer/RateRandomizerPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/RateRandomizer/RateRandomizerPS.h -------------------------------------------------------------------------------- /src/UtilEffects/SegOffsetCycler/SegOffsetCyclerPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/SegOffsetCycler/SegOffsetCyclerPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/SegOffsetCycler/SegOffsetCyclerPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/SegOffsetCycler/SegOffsetCyclerPS.h -------------------------------------------------------------------------------- /src/UtilEffects/SegmentSetCheck/SegmentSetCheckPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/SegmentSetCheck/SegmentSetCheckPS.cpp -------------------------------------------------------------------------------- /src/UtilEffects/SegmentSetCheck/SegmentSetCheckPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertGBarber/PixelSpork/HEAD/src/UtilEffects/SegmentSetCheck/SegmentSetCheckPS.h --------------------------------------------------------------------------------