├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Console ├── App.config ├── Common │ ├── BaseCommand.cs │ ├── BaseOptions.cs │ └── Options.cs ├── Console.csproj ├── DmdExt.cs ├── FodyWeavers.xml ├── Mirror │ ├── MirrorCommand.cs │ └── MirrorOptions.cs ├── NLog.xsd ├── Play │ ├── PlayCommand.cs │ └── PlayOptions.cs ├── ProPinballSlave.bat ├── Properties │ └── AssemblyInfo.cs ├── Server │ ├── README.md │ ├── ServerCommand.cs │ └── ServerOptions.cs ├── Test │ ├── TestCommand.cs │ ├── TestImage.png │ └── TestOptions.cs ├── dmdext.log.config ├── icon.ico └── packages.config ├── DllExport.bat ├── DmdExtensions.sln ├── Installer.Actions ├── CustomAction.config ├── CustomAction.cs ├── Installer.Actions.csproj ├── OsUtil.cs ├── Properties │ └── AssemblyInfo.cs └── SteamInfo.cs ├── Installer ├── Assets │ ├── background.bmp │ ├── background.png │ ├── banner.bmp │ ├── banner.png │ └── gpl-2.0.rtf ├── Components.wxs ├── CustomActions.wxs ├── Directories.wxs ├── Installer.wixproj ├── Product.wxs ├── Strings.wxl ├── icon.ico └── icon.png ├── LICENSE ├── LibDmd.Test ├── DmdDevice │ ├── DmdDeviceTests.cs │ └── TestConfiguration.cs ├── Frame │ ├── DimensionTests.cs │ └── FrameTests.cs ├── FrameGenerator.cs ├── LibDmd.Test.csproj ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── RenderGraph │ ├── BitmapFixedSourceTests.cs │ ├── Gray2ConverterSourceTests.cs │ ├── Gray2DynamicSourceTests.cs │ ├── Gray2FixedSourceTests.cs │ ├── Gray4ConverterSourceTests.cs │ ├── Gray4FixedSourceTests.cs │ ├── Gray6ConverterSourceTests.cs │ ├── MultiDestinationTests.cs │ ├── MultiGraphTests.cs │ ├── Rgb24FixedSourceTests.cs │ └── Rgb565SourceConversionTests.cs ├── Stubs │ ├── ConverterGray2.cs │ ├── ConverterGray2Multi.cs │ ├── ConverterGray4.cs │ ├── ConverterGray6.cs │ ├── DestinationAlphaNumeric.cs │ ├── DestinationDynamic.cs │ ├── DestinationDynamicBitmap.cs │ ├── DestinationDynamicGray2.cs │ ├── DestinationDynamicRgb24.cs │ ├── DestinationFixed.cs │ ├── DestinationFixedBitmap.cs │ ├── DestinationFixedColored.cs │ ├── DestinationFixedGray2.cs │ ├── DestinationFixedGray2Colored.cs │ ├── DestinationFixedGray4.cs │ ├── DestinationFixedGray4Colored.cs │ ├── DestinationFixedGray6Colored.cs │ ├── DestinationFixedRgb24.cs │ ├── DestinationFixedRgb565.cs │ ├── ITestDestination.cs │ ├── ITestSource.cs │ ├── SourceBitmap.cs │ ├── SourceColoredGray2.cs │ ├── SourceColoredGray4.cs │ ├── SourceColoredGray6.cs │ ├── SourceGray2.cs │ ├── SourceGray4.cs │ ├── SourceRgb24.cs │ └── SourceRgb565.cs └── TestBase.cs ├── LibDmd ├── AlphaNumericFrame.cs ├── Analytics.cs ├── Common │ ├── AboutDialog.xaml │ ├── AboutDialog.xaml.cs │ ├── BinaryReaderExtensions.cs │ ├── ColorUtil.cs │ ├── CultureUtil.cs │ ├── FrameUtil.cs │ ├── HeatShrink │ │ ├── HeatShrinkDecoder.cs │ │ ├── HeatShrinkEncoder.cs │ │ ├── OutputInfo.cs │ │ └── Result.cs │ ├── ImageUtil.cs │ ├── InteropUtil.cs │ ├── PathUtil.cs │ ├── Profiler.cs │ ├── TransformationUtil.cs │ ├── VirtualAlphaNumericDisplay.xaml │ ├── VirtualAlphaNumericDisplay.xaml.cs │ ├── VirtualDisplay.cs │ ├── VirtualDmd.xaml │ └── VirtualDmd.xaml.cs ├── Converter │ ├── AbstractConverter.cs │ ├── ColorizationLoader.cs │ ├── Plugin │ │ └── ColorizationPlugin.cs │ ├── Serum │ │ ├── ISerumApi.cs │ │ ├── Serum.cs │ │ ├── SerumApiV1.cs │ │ ├── SerumApiV2.cs │ │ ├── SerumFrame.cs │ │ └── SerumVersion.cs │ ├── SwitchingConverter.cs │ └── Vni │ │ ├── AnimationFrame.cs │ │ ├── AnimationPlane.cs │ │ ├── AnimationSet.cs │ │ ├── FrameSeq.cs │ │ ├── Mapping.cs │ │ ├── PalFile.cs │ │ ├── Palette.cs │ │ ├── SwitchMode.cs │ │ ├── VniAnimationFrame.cs │ │ ├── VniAnimationPlane.cs │ │ ├── VniColorizer.cs │ │ ├── VniFile.cs │ │ ├── VniFrameSeq.cs │ │ └── VniLoader.cs ├── Costura32 │ ├── avcodec-53.dll │ ├── avdevice-53.dll │ ├── avfilter-2.dll │ ├── avformat-53.dll │ ├── avutil-51.dll │ ├── ftd2xx.dll │ ├── libSkiaSharp.dll │ ├── libserialport.dll │ ├── postproc-52.dll │ ├── serum.dll │ ├── sockpp.dll │ ├── sqlite3.dll │ ├── swresample-0.dll │ ├── swscale-2.dll │ └── zedmd.dll ├── Costura64 │ ├── ftd2xx.dll │ ├── libSkiaSharp.dll │ ├── libserialport64.dll │ ├── serum64.dll │ ├── sockpp64.dll │ ├── sqlite3.dll │ └── zedmd64.dll ├── DmdDevice │ ├── AlphaNumeric.cs │ ├── Configuration.cs │ ├── DmdDevice.cs │ ├── IConfiguration.cs │ ├── IDmdDevice.cs │ └── PMOptions.cs ├── FTDI2XX.xml ├── FodyWeavers.xml ├── Frame │ ├── BaseFrame.cs │ ├── BmpFrame.cs │ ├── ColoredFrame.cs │ ├── Dimensions.cs │ ├── DmdFrame.cs │ ├── FrameExtensions.cs │ └── RawFrame.cs ├── IRenderer.cs ├── Input │ ├── AbstractSource.cs │ ├── FileSystem │ │ ├── DumpSource.cs │ │ ├── GifSource.cs │ │ ├── ImageSource.cs │ │ ├── PassthroughSource.cs │ │ └── RawSource.cs │ ├── FutureDmd │ │ ├── FutureDmdSink.cs │ │ └── OpenGL32.dll │ ├── IAlphaNumericSource.cs │ ├── IBitmapSource.cs │ ├── IColorRotationSource.cs │ ├── IColoredGray2Source.cs │ ├── IColoredGray4Source.cs │ ├── IColoredGray6Source.cs │ ├── IDmdColorSource.cs │ ├── IFrameEventSource.cs │ ├── IGameNameSource.cs │ ├── IGray2Source.cs │ ├── IGray4Source.cs │ ├── IGray8Source.cs │ ├── IRawSource.cs │ ├── IRgb24Source.cs │ ├── IRgb565Source.cs │ ├── ISource.cs │ ├── MemoryGrabber.cs │ ├── MemoryGrabberBase.cs │ ├── Network │ │ ├── WebsocketColoredGray2Source.cs │ │ ├── WebsocketColoredGray4Source.cs │ │ ├── WebsocketColoredGray6Source.cs │ │ ├── WebsocketGray2Source.cs │ │ ├── WebsocketGray4Source .cs │ │ ├── WebsocketRgb24Source.cs │ │ └── WebsocketServer.cs │ ├── Passthrough │ │ ├── PassthroughAlphaNumericSource.cs │ │ ├── PassthroughColoredGray2Source.cs │ │ ├── PassthroughColoredGray4Source.cs │ │ ├── PassthroughColoredGray6Source.cs │ │ ├── PassthroughGray2Source.cs │ │ ├── PassthroughGray4Source.cs │ │ ├── PassthroughGray8Source.cs │ │ └── PassthroughRgb24Source.cs │ ├── PinballFX │ │ ├── PinballFX2Grabber.cs │ │ ├── PinballFX3Grabber.cs │ │ ├── PinballFX3MemoryGrabber.cs │ │ └── PinballFXGrabber.cs │ ├── ProPinball │ │ └── ProPinballSlave.cs │ ├── ScreenGrabber │ │ ├── GrabberWindow.xaml │ │ ├── GrabberWindow.xaml.cs │ │ ├── NativeCapture.cs │ │ └── ScreenGrabber.cs │ └── TPAGrabber │ │ └── TPAGrabber.cs ├── LibDmd.csproj ├── Licenses │ └── Cropper.txt ├── Output │ ├── BufferRenderer.cs │ ├── ColorRotationWrapper.cs │ ├── Dmd.cod │ ├── Dmd.ps │ ├── FileOutput │ │ ├── BitmapOutput.cs │ │ ├── GifOutput.cs │ │ ├── RawOutput.cs │ │ └── VideoOutput.cs │ ├── IAlphaNumericDestination.cs │ ├── IBitmapDestination.cs │ ├── IColorRotationDestination.cs │ ├── IColoredGray2Destination.cs │ ├── IColoredGray4Destination.cs │ ├── IColoredGray6Destination.cs │ ├── IDestination.cs │ ├── IFixedSizeDestination.cs │ ├── IFrameEventDestination.cs │ ├── IGray2Destination.cs │ ├── IGray4Destination.cs │ ├── IGray8Destination.cs │ ├── IMultiSizeDestination.cs │ ├── IRawOutput.cs │ ├── IResizableDestination.cs │ ├── IRgb24Destination.cs │ ├── IRgb565Destination.cs │ ├── Network │ │ ├── BrowserStream.cs │ │ ├── NetworkStream.cs │ │ ├── VpdbStream.cs │ │ ├── WebsocketSerializer.cs │ │ └── www │ │ │ ├── composer.js │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── jbinary.js │ │ │ ├── jdataview.js │ │ │ ├── main.js │ │ │ ├── reconnecting-websocket.js │ │ │ ├── shaders.js │ │ │ ├── styles.css │ │ │ └── three.min.js │ ├── Pin2Dmd │ │ ├── Pin2Dmd.cs │ │ ├── Pin2DmdBase.cs │ │ ├── Pin2DmdHd.cs │ │ ├── Pin2DmdXl.cs │ │ ├── pin2dmd.h │ │ └── pin2dmd.lib │ ├── PinDmd1 │ │ └── PinDmd1.cs │ ├── PinDmd2 │ │ └── PinDmd2.cs │ ├── PinDmd3 │ │ ├── PinDmd3.cs │ │ ├── main.c │ │ ├── pinDMD.lib │ │ └── pinDMD3.h │ ├── PinUp │ │ └── PinUpOutput.cs │ ├── Pixelcade │ │ └── Pixelcade.cs │ ├── Virtual │ │ ├── AlphaNumeric │ │ │ ├── AlphaNumericLayerSetting.xaml │ │ │ ├── AlphaNumericLayerSetting.xaml.cs │ │ │ ├── AlphaNumericPainter.cs │ │ │ ├── AlphaNumericResources.cs │ │ │ ├── AlphaNumericSettings.xaml │ │ │ ├── AlphaNumericSettings.xaml.cs │ │ │ ├── AlphanumericControl.xaml │ │ │ ├── AlphanumericControl.xaml.cs │ │ │ ├── DisplaySetting.cs │ │ │ ├── README.md │ │ │ ├── RasterizeDimensions.cs │ │ │ ├── RasterizeLayerStyle.cs │ │ │ ├── RasterizeStyle.cs │ │ │ ├── VirtualAlphanumericDestination.cs │ │ │ ├── alphanum-bold │ │ │ │ ├── 00-top.svg │ │ │ │ ├── 01-top-right.svg │ │ │ │ ├── 02-bottom-right.svg │ │ │ │ ├── 03-bottom.svg │ │ │ │ ├── 04-bottom-left.svg │ │ │ │ ├── 05-top-left.svg │ │ │ │ ├── 06-middle-left.svg │ │ │ │ ├── 07-comma.svg │ │ │ │ ├── 08-diag-top-left.svg │ │ │ │ ├── 09-center-top.svg │ │ │ │ ├── 10-diag-top-right.svg │ │ │ │ ├── 11-middle-right.svg │ │ │ │ ├── 12-diag-bottom-right.svg │ │ │ │ ├── 13-center-bottom.svg │ │ │ │ ├── 14-diag-bottom-left.svg │ │ │ │ ├── 15-dot.svg │ │ │ │ └── full.svg │ │ │ ├── alphanum-thin │ │ │ │ ├── 00-top.svg │ │ │ │ ├── 01-top-right.svg │ │ │ │ ├── 02-bottom-right.svg │ │ │ │ ├── 03-bottom.svg │ │ │ │ ├── 04-bottom-left.svg │ │ │ │ ├── 05-top-left.svg │ │ │ │ ├── 06-middle-left.svg │ │ │ │ ├── 07-comma.svg │ │ │ │ ├── 08-diag-top-left.svg │ │ │ │ ├── 09-center-top.svg │ │ │ │ ├── 10-diag-top-right.svg │ │ │ │ ├── 11-middle-right.svg │ │ │ │ ├── 12-diag-bottom-right.svg │ │ │ │ ├── 13-center-bottom.svg │ │ │ │ ├── 14-diag-bottom-left.svg │ │ │ │ ├── 15-dot.svg │ │ │ │ └── full.svg │ │ │ ├── numeric-bold │ │ │ │ ├── 00-top.svg │ │ │ │ ├── 01-top-right.svg │ │ │ │ ├── 02-bottom-right.svg │ │ │ │ ├── 03-bottom.svg │ │ │ │ ├── 04-bottom-left.svg │ │ │ │ ├── 05-top-left.svg │ │ │ │ ├── 06-middle.svg │ │ │ │ ├── 07-comma.svg │ │ │ │ ├── 08-center-top.svg │ │ │ │ ├── 09-center-bottom.svg │ │ │ │ ├── full-10.svg │ │ │ │ └── full.svg │ │ │ └── numeric-thin │ │ │ │ ├── 00-top.svg │ │ │ │ ├── 01-top-right.svg │ │ │ │ ├── 02-bottom-right.svg │ │ │ │ ├── 03-bottom.svg │ │ │ │ ├── 04-bottom-left.svg │ │ │ │ ├── 05-top-left.svg │ │ │ │ ├── 06-middle.svg │ │ │ │ ├── 07-comma.svg │ │ │ │ ├── 08-center-top.svg │ │ │ │ ├── 09-center-bottom.svg │ │ │ │ ├── full-10.svg │ │ │ │ └── full.svg │ │ └── Dmd │ │ │ ├── Blur.frag │ │ │ ├── Blur.vert │ │ │ ├── Convert.frag │ │ │ ├── Convert.vert │ │ │ ├── Dmd.frag │ │ │ ├── Dmd.vert │ │ │ ├── DmdPaddingSetting.xaml │ │ │ ├── DmdPaddingSetting.xaml.cs │ │ │ ├── DmdSettings.xaml │ │ │ ├── DmdSettings.xaml.cs │ │ │ ├── DmdStyle.cs │ │ │ ├── Helper.cs │ │ │ ├── OpenGLControlExt.xaml │ │ │ ├── OpenGLControlExt.xaml.cs │ │ │ ├── README.md │ │ │ ├── SliderValueSetting.xaml │ │ │ ├── SliderValueSetting.xaml.cs │ │ │ ├── VirtualDmdControl.xaml │ │ │ ├── VirtualDmdControl.xaml.cs │ │ │ ├── preview-128x16-mono.png │ │ │ ├── preview-128x16-tint.png │ │ │ ├── preview-128x32-color.png │ │ │ ├── preview-128x32-mono.png │ │ │ ├── preview-128x32-tint.png │ │ │ ├── preview-192x64-mono.png │ │ │ ├── preview-192x64-tint.png │ │ │ ├── preview-32x8-mono.png │ │ │ └── preview-32x8-tint.png │ └── ZeDMD │ │ ├── ZeDMD.cs │ │ ├── ZeDMDBase.cs │ │ ├── ZeDMDHD.cs │ │ ├── ZeDMDHDWiFi.cs │ │ ├── ZeDMDUsbBase.cs │ │ ├── ZeDMDWiFi.cs │ │ └── ZeDMDWiFiBase.cs ├── Processor │ ├── AbstractProcessor.cs │ └── GridProcessor.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── RawRenderer.cs ├── RenderGraph.cs ├── RenderGraph.png ├── RenderGraphCollection.cs ├── app.config ├── icon.png └── packages.config ├── PinMameDevice ├── DmdDevice.cs ├── DmdDevice.ini ├── DmdDevice.log.config ├── FodyWeavers.xml ├── PinMameDevice.csproj ├── PinballFX_IDs.md ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── app.config ├── data │ └── textures │ │ ├── frames │ │ ├── bally.png │ │ ├── glass1.png │ │ ├── glass2.png │ │ ├── glass3.png │ │ ├── metal1.png │ │ ├── metal2.png │ │ ├── metal3.png │ │ └── metal4.png │ │ └── glasses │ │ ├── broken1.jpg │ │ ├── broken2.jpg │ │ ├── glass1.jpg │ │ ├── glass2.jpg │ │ ├── glass3.jpg │ │ ├── glass4.jpg │ │ ├── glass5.jpg │ │ ├── glass6.jpg │ │ └── glass7.jpg ├── packages.config └── vendor │ └── VPinMAME.dll ├── ProPinballBridge ├── AssemblyInfo.cpp ├── ProPinballBridge.cpp ├── ProPinballBridge.h ├── ProPinballBridge.vcxproj ├── ProPinballBridge.vcxproj.filters ├── README.md ├── Stdafx.cpp ├── Stdafx.h ├── app.ico ├── app.rc ├── packages.config └── resource.h ├── ProPinballDmdSlave ├── App.config ├── ProPinballDmdSlave.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ProPinballSlave ├── AssemblyInfo.cpp ├── ProPinballSlave.cpp ├── ProPinballSlave.vcxproj ├── ProPinballSlave.vcxproj.filters ├── ReadMe.txt ├── app.ico ├── app.rc ├── packages.config ├── resource.h ├── stdafx.cpp └── stdafx.h ├── README.md ├── VersionAssemblyInfo.cs └── resharper.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/App.config -------------------------------------------------------------------------------- /Console/Common/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Common/BaseCommand.cs -------------------------------------------------------------------------------- /Console/Common/BaseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Common/BaseOptions.cs -------------------------------------------------------------------------------- /Console/Common/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Common/Options.cs -------------------------------------------------------------------------------- /Console/Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Console.csproj -------------------------------------------------------------------------------- /Console/DmdExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/DmdExt.cs -------------------------------------------------------------------------------- /Console/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/FodyWeavers.xml -------------------------------------------------------------------------------- /Console/Mirror/MirrorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Mirror/MirrorCommand.cs -------------------------------------------------------------------------------- /Console/Mirror/MirrorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Mirror/MirrorOptions.cs -------------------------------------------------------------------------------- /Console/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/NLog.xsd -------------------------------------------------------------------------------- /Console/Play/PlayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Play/PlayCommand.cs -------------------------------------------------------------------------------- /Console/Play/PlayOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Play/PlayOptions.cs -------------------------------------------------------------------------------- /Console/ProPinballSlave.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/ProPinballSlave.bat -------------------------------------------------------------------------------- /Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Console/Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Server/README.md -------------------------------------------------------------------------------- /Console/Server/ServerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Server/ServerCommand.cs -------------------------------------------------------------------------------- /Console/Server/ServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Server/ServerOptions.cs -------------------------------------------------------------------------------- /Console/Test/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Test/TestCommand.cs -------------------------------------------------------------------------------- /Console/Test/TestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Test/TestImage.png -------------------------------------------------------------------------------- /Console/Test/TestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/Test/TestOptions.cs -------------------------------------------------------------------------------- /Console/dmdext.log.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/dmdext.log.config -------------------------------------------------------------------------------- /Console/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/icon.ico -------------------------------------------------------------------------------- /Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Console/packages.config -------------------------------------------------------------------------------- /DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/DllExport.bat -------------------------------------------------------------------------------- /DmdExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/DmdExtensions.sln -------------------------------------------------------------------------------- /Installer.Actions/CustomAction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer.Actions/CustomAction.config -------------------------------------------------------------------------------- /Installer.Actions/CustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer.Actions/CustomAction.cs -------------------------------------------------------------------------------- /Installer.Actions/Installer.Actions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer.Actions/Installer.Actions.csproj -------------------------------------------------------------------------------- /Installer.Actions/OsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer.Actions/OsUtil.cs -------------------------------------------------------------------------------- /Installer.Actions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer.Actions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Installer.Actions/SteamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer.Actions/SteamInfo.cs -------------------------------------------------------------------------------- /Installer/Assets/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Assets/background.bmp -------------------------------------------------------------------------------- /Installer/Assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Assets/background.png -------------------------------------------------------------------------------- /Installer/Assets/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Assets/banner.bmp -------------------------------------------------------------------------------- /Installer/Assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Assets/banner.png -------------------------------------------------------------------------------- /Installer/Assets/gpl-2.0.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Assets/gpl-2.0.rtf -------------------------------------------------------------------------------- /Installer/Components.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Components.wxs -------------------------------------------------------------------------------- /Installer/CustomActions.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/CustomActions.wxs -------------------------------------------------------------------------------- /Installer/Directories.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Directories.wxs -------------------------------------------------------------------------------- /Installer/Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Installer.wixproj -------------------------------------------------------------------------------- /Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Product.wxs -------------------------------------------------------------------------------- /Installer/Strings.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/Strings.wxl -------------------------------------------------------------------------------- /Installer/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/icon.ico -------------------------------------------------------------------------------- /Installer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/Installer/icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /LibDmd.Test/DmdDevice/DmdDeviceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/DmdDevice/DmdDeviceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/DmdDevice/TestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/DmdDevice/TestConfiguration.cs -------------------------------------------------------------------------------- /LibDmd.Test/Frame/DimensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Frame/DimensionTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/Frame/FrameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Frame/FrameTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/FrameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/FrameGenerator.cs -------------------------------------------------------------------------------- /LibDmd.Test/LibDmd.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/LibDmd.Test.csproj -------------------------------------------------------------------------------- /LibDmd.Test/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LibDmd.Test/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Properties/Settings.settings -------------------------------------------------------------------------------- /LibDmd.Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/README.md -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/BitmapFixedSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/BitmapFixedSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Gray2ConverterSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Gray2ConverterSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Gray2DynamicSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Gray2DynamicSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Gray2FixedSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Gray2FixedSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Gray4ConverterSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Gray4ConverterSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Gray4FixedSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Gray4FixedSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Gray6ConverterSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Gray6ConverterSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/MultiDestinationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/MultiDestinationTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/MultiGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/MultiGraphTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Rgb24FixedSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Rgb24FixedSourceTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/RenderGraph/Rgb565SourceConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/RenderGraph/Rgb565SourceConversionTests.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/ConverterGray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/ConverterGray2.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/ConverterGray2Multi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/ConverterGray2Multi.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/ConverterGray4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/ConverterGray4.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/ConverterGray6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/ConverterGray6.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationAlphaNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationAlphaNumeric.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationDynamic.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationDynamicBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationDynamicBitmap.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationDynamicGray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationDynamicGray2.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationDynamicRgb24.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationDynamicRgb24.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixed.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedBitmap.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedColored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedColored.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedGray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedGray2.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedGray2Colored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedGray2Colored.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedGray4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedGray4.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedGray4Colored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedGray4Colored.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedGray6Colored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedGray6Colored.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedRgb24.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedRgb24.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/DestinationFixedRgb565.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/DestinationFixedRgb565.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/ITestDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/ITestDestination.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/ITestSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/ITestSource.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceBitmap.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceColoredGray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceColoredGray2.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceColoredGray4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceColoredGray4.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceColoredGray6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceColoredGray6.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceGray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceGray2.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceGray4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceGray4.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceRgb24.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceRgb24.cs -------------------------------------------------------------------------------- /LibDmd.Test/Stubs/SourceRgb565.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/Stubs/SourceRgb565.cs -------------------------------------------------------------------------------- /LibDmd.Test/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd.Test/TestBase.cs -------------------------------------------------------------------------------- /LibDmd/AlphaNumericFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/AlphaNumericFrame.cs -------------------------------------------------------------------------------- /LibDmd/Analytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Analytics.cs -------------------------------------------------------------------------------- /LibDmd/Common/AboutDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/AboutDialog.xaml -------------------------------------------------------------------------------- /LibDmd/Common/AboutDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/AboutDialog.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Common/BinaryReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/BinaryReaderExtensions.cs -------------------------------------------------------------------------------- /LibDmd/Common/ColorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/ColorUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/CultureUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/CultureUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/FrameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/FrameUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/HeatShrink/HeatShrinkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/HeatShrink/HeatShrinkDecoder.cs -------------------------------------------------------------------------------- /LibDmd/Common/HeatShrink/HeatShrinkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/HeatShrink/HeatShrinkEncoder.cs -------------------------------------------------------------------------------- /LibDmd/Common/HeatShrink/OutputInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/HeatShrink/OutputInfo.cs -------------------------------------------------------------------------------- /LibDmd/Common/HeatShrink/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/HeatShrink/Result.cs -------------------------------------------------------------------------------- /LibDmd/Common/ImageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/ImageUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/InteropUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/InteropUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/PathUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/Profiler.cs -------------------------------------------------------------------------------- /LibDmd/Common/TransformationUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/TransformationUtil.cs -------------------------------------------------------------------------------- /LibDmd/Common/VirtualAlphaNumericDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/VirtualAlphaNumericDisplay.xaml -------------------------------------------------------------------------------- /LibDmd/Common/VirtualAlphaNumericDisplay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/VirtualAlphaNumericDisplay.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Common/VirtualDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/VirtualDisplay.cs -------------------------------------------------------------------------------- /LibDmd/Common/VirtualDmd.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/VirtualDmd.xaml -------------------------------------------------------------------------------- /LibDmd/Common/VirtualDmd.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Common/VirtualDmd.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Converter/AbstractConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/AbstractConverter.cs -------------------------------------------------------------------------------- /LibDmd/Converter/ColorizationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/ColorizationLoader.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Plugin/ColorizationPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Plugin/ColorizationPlugin.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Serum/ISerumApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Serum/ISerumApi.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Serum/Serum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Serum/Serum.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Serum/SerumApiV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Serum/SerumApiV1.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Serum/SerumApiV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Serum/SerumApiV2.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Serum/SerumFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Serum/SerumFrame.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Serum/SerumVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Serum/SerumVersion.cs -------------------------------------------------------------------------------- /LibDmd/Converter/SwitchingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/SwitchingConverter.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/AnimationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/AnimationFrame.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/AnimationPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/AnimationPlane.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/AnimationSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/AnimationSet.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/FrameSeq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/FrameSeq.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/Mapping.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/PalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/PalFile.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/Palette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/Palette.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/SwitchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/SwitchMode.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/VniAnimationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/VniAnimationFrame.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/VniAnimationPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/VniAnimationPlane.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/VniColorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/VniColorizer.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/VniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/VniFile.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/VniFrameSeq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/VniFrameSeq.cs -------------------------------------------------------------------------------- /LibDmd/Converter/Vni/VniLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Converter/Vni/VniLoader.cs -------------------------------------------------------------------------------- /LibDmd/Costura32/avcodec-53.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/avcodec-53.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/avdevice-53.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/avdevice-53.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/avfilter-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/avfilter-2.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/avformat-53.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/avformat-53.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/avutil-51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/avutil-51.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/ftd2xx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/ftd2xx.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/libSkiaSharp.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/libserialport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/libserialport.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/postproc-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/postproc-52.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/serum.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/serum.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/sockpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/sockpp.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/sqlite3.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/swresample-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/swresample-0.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/swscale-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/swscale-2.dll -------------------------------------------------------------------------------- /LibDmd/Costura32/zedmd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura32/zedmd.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/ftd2xx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/ftd2xx.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/libSkiaSharp.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/libserialport64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/libserialport64.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/serum64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/serum64.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/sockpp64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/sockpp64.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/sqlite3.dll -------------------------------------------------------------------------------- /LibDmd/Costura64/zedmd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Costura64/zedmd64.dll -------------------------------------------------------------------------------- /LibDmd/DmdDevice/AlphaNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/DmdDevice/AlphaNumeric.cs -------------------------------------------------------------------------------- /LibDmd/DmdDevice/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/DmdDevice/Configuration.cs -------------------------------------------------------------------------------- /LibDmd/DmdDevice/DmdDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/DmdDevice/DmdDevice.cs -------------------------------------------------------------------------------- /LibDmd/DmdDevice/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/DmdDevice/IConfiguration.cs -------------------------------------------------------------------------------- /LibDmd/DmdDevice/IDmdDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/DmdDevice/IDmdDevice.cs -------------------------------------------------------------------------------- /LibDmd/DmdDevice/PMOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/DmdDevice/PMOptions.cs -------------------------------------------------------------------------------- /LibDmd/FTDI2XX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/FTDI2XX.xml -------------------------------------------------------------------------------- /LibDmd/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/FodyWeavers.xml -------------------------------------------------------------------------------- /LibDmd/Frame/BaseFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/BaseFrame.cs -------------------------------------------------------------------------------- /LibDmd/Frame/BmpFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/BmpFrame.cs -------------------------------------------------------------------------------- /LibDmd/Frame/ColoredFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/ColoredFrame.cs -------------------------------------------------------------------------------- /LibDmd/Frame/Dimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/Dimensions.cs -------------------------------------------------------------------------------- /LibDmd/Frame/DmdFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/DmdFrame.cs -------------------------------------------------------------------------------- /LibDmd/Frame/FrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/FrameExtensions.cs -------------------------------------------------------------------------------- /LibDmd/Frame/RawFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Frame/RawFrame.cs -------------------------------------------------------------------------------- /LibDmd/IRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/IRenderer.cs -------------------------------------------------------------------------------- /LibDmd/Input/AbstractSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/AbstractSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/FileSystem/DumpSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FileSystem/DumpSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/FileSystem/GifSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FileSystem/GifSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/FileSystem/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FileSystem/ImageSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/FileSystem/PassthroughSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FileSystem/PassthroughSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/FileSystem/RawSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FileSystem/RawSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/FutureDmd/FutureDmdSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FutureDmd/FutureDmdSink.cs -------------------------------------------------------------------------------- /LibDmd/Input/FutureDmd/OpenGL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/FutureDmd/OpenGL32.dll -------------------------------------------------------------------------------- /LibDmd/Input/IAlphaNumericSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IAlphaNumericSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IBitmapSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IBitmapSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IColorRotationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IColorRotationSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IColoredGray2Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IColoredGray2Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IColoredGray4Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IColoredGray4Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IColoredGray6Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IColoredGray6Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IDmdColorSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IDmdColorSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IFrameEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IFrameEventSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IGameNameSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IGameNameSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IGray2Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IGray2Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IGray4Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IGray4Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IGray8Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IGray8Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IRawSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IRawSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/IRgb24Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IRgb24Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/IRgb565Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/IRgb565Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/ISource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/ISource.cs -------------------------------------------------------------------------------- /LibDmd/Input/MemoryGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/MemoryGrabber.cs -------------------------------------------------------------------------------- /LibDmd/Input/MemoryGrabberBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/MemoryGrabberBase.cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketColoredGray2Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketColoredGray2Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketColoredGray4Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketColoredGray4Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketColoredGray6Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketColoredGray6Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketGray2Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketGray2Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketGray4Source .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketGray4Source .cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketRgb24Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketRgb24Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Network/WebsocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Network/WebsocketServer.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughAlphaNumericSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughAlphaNumericSource.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughColoredGray2Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughColoredGray2Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughColoredGray4Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughColoredGray4Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughColoredGray6Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughColoredGray6Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughGray2Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughGray2Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughGray4Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughGray4Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughGray8Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughGray8Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/Passthrough/PassthroughRgb24Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/Passthrough/PassthroughRgb24Source.cs -------------------------------------------------------------------------------- /LibDmd/Input/PinballFX/PinballFX2Grabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/PinballFX/PinballFX2Grabber.cs -------------------------------------------------------------------------------- /LibDmd/Input/PinballFX/PinballFX3Grabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/PinballFX/PinballFX3Grabber.cs -------------------------------------------------------------------------------- /LibDmd/Input/PinballFX/PinballFX3MemoryGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/PinballFX/PinballFX3MemoryGrabber.cs -------------------------------------------------------------------------------- /LibDmd/Input/PinballFX/PinballFXGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/PinballFX/PinballFXGrabber.cs -------------------------------------------------------------------------------- /LibDmd/Input/ProPinball/ProPinballSlave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/ProPinball/ProPinballSlave.cs -------------------------------------------------------------------------------- /LibDmd/Input/ScreenGrabber/GrabberWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/ScreenGrabber/GrabberWindow.xaml -------------------------------------------------------------------------------- /LibDmd/Input/ScreenGrabber/GrabberWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/ScreenGrabber/GrabberWindow.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Input/ScreenGrabber/NativeCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/ScreenGrabber/NativeCapture.cs -------------------------------------------------------------------------------- /LibDmd/Input/ScreenGrabber/ScreenGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/ScreenGrabber/ScreenGrabber.cs -------------------------------------------------------------------------------- /LibDmd/Input/TPAGrabber/TPAGrabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Input/TPAGrabber/TPAGrabber.cs -------------------------------------------------------------------------------- /LibDmd/LibDmd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/LibDmd.csproj -------------------------------------------------------------------------------- /LibDmd/Licenses/Cropper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Licenses/Cropper.txt -------------------------------------------------------------------------------- /LibDmd/Output/BufferRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/BufferRenderer.cs -------------------------------------------------------------------------------- /LibDmd/Output/ColorRotationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ColorRotationWrapper.cs -------------------------------------------------------------------------------- /LibDmd/Output/Dmd.cod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Dmd.cod -------------------------------------------------------------------------------- /LibDmd/Output/Dmd.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Dmd.ps -------------------------------------------------------------------------------- /LibDmd/Output/FileOutput/BitmapOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/FileOutput/BitmapOutput.cs -------------------------------------------------------------------------------- /LibDmd/Output/FileOutput/GifOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/FileOutput/GifOutput.cs -------------------------------------------------------------------------------- /LibDmd/Output/FileOutput/RawOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/FileOutput/RawOutput.cs -------------------------------------------------------------------------------- /LibDmd/Output/FileOutput/VideoOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/FileOutput/VideoOutput.cs -------------------------------------------------------------------------------- /LibDmd/Output/IAlphaNumericDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IAlphaNumericDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IBitmapDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IBitmapDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IColorRotationDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IColorRotationDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IColoredGray2Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IColoredGray2Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IColoredGray4Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IColoredGray4Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IColoredGray6Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IColoredGray6Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IFixedSizeDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IFixedSizeDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IFrameEventDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IFrameEventDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IGray2Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IGray2Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IGray4Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IGray4Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IGray8Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IGray8Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IMultiSizeDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IMultiSizeDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IRawOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IRawOutput.cs -------------------------------------------------------------------------------- /LibDmd/Output/IResizableDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IResizableDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IRgb24Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IRgb24Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/IRgb565Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/IRgb565Destination.cs -------------------------------------------------------------------------------- /LibDmd/Output/Network/BrowserStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/BrowserStream.cs -------------------------------------------------------------------------------- /LibDmd/Output/Network/NetworkStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/NetworkStream.cs -------------------------------------------------------------------------------- /LibDmd/Output/Network/VpdbStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/VpdbStream.cs -------------------------------------------------------------------------------- /LibDmd/Output/Network/WebsocketSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/WebsocketSerializer.cs -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/composer.js -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/favicon.ico -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/index.html -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/jbinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/jbinary.js -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/jdataview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/jdataview.js -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/main.js -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/reconnecting-websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/reconnecting-websocket.js -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/shaders.js -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/styles.css -------------------------------------------------------------------------------- /LibDmd/Output/Network/www/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Network/www/three.min.js -------------------------------------------------------------------------------- /LibDmd/Output/Pin2Dmd/Pin2Dmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pin2Dmd/Pin2Dmd.cs -------------------------------------------------------------------------------- /LibDmd/Output/Pin2Dmd/Pin2DmdBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pin2Dmd/Pin2DmdBase.cs -------------------------------------------------------------------------------- /LibDmd/Output/Pin2Dmd/Pin2DmdHd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pin2Dmd/Pin2DmdHd.cs -------------------------------------------------------------------------------- /LibDmd/Output/Pin2Dmd/Pin2DmdXl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pin2Dmd/Pin2DmdXl.cs -------------------------------------------------------------------------------- /LibDmd/Output/Pin2Dmd/pin2dmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pin2Dmd/pin2dmd.h -------------------------------------------------------------------------------- /LibDmd/Output/Pin2Dmd/pin2dmd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pin2Dmd/pin2dmd.lib -------------------------------------------------------------------------------- /LibDmd/Output/PinDmd1/PinDmd1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinDmd1/PinDmd1.cs -------------------------------------------------------------------------------- /LibDmd/Output/PinDmd2/PinDmd2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinDmd2/PinDmd2.cs -------------------------------------------------------------------------------- /LibDmd/Output/PinDmd3/PinDmd3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinDmd3/PinDmd3.cs -------------------------------------------------------------------------------- /LibDmd/Output/PinDmd3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinDmd3/main.c -------------------------------------------------------------------------------- /LibDmd/Output/PinDmd3/pinDMD.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinDmd3/pinDMD.lib -------------------------------------------------------------------------------- /LibDmd/Output/PinDmd3/pinDMD3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinDmd3/pinDMD3.h -------------------------------------------------------------------------------- /LibDmd/Output/PinUp/PinUpOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/PinUp/PinUpOutput.cs -------------------------------------------------------------------------------- /LibDmd/Output/Pixelcade/Pixelcade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Pixelcade/Pixelcade.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericLayerSetting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericLayerSetting.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericLayerSetting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericLayerSetting.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericPainter.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericResources.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericSettings.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphaNumericSettings.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphanumericControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphanumericControl.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/AlphanumericControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/AlphanumericControl.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/DisplaySetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/DisplaySetting.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/README.md -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/RasterizeDimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/RasterizeDimensions.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/RasterizeLayerStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/RasterizeLayerStyle.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/RasterizeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/RasterizeStyle.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/VirtualAlphanumericDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/VirtualAlphanumericDestination.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/00-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/00-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/01-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/01-top-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/02-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/02-bottom-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/03-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/03-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/04-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/04-bottom-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/05-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/05-top-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/06-middle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/06-middle-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/07-comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/07-comma.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/08-diag-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/08-diag-top-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/09-center-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/09-center-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/10-diag-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/10-diag-top-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/11-middle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/11-middle-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/12-diag-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/12-diag-bottom-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/13-center-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/13-center-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/14-diag-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/14-diag-bottom-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/15-dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/15-dot.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-bold/full.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/00-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/00-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/01-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/01-top-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/02-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/02-bottom-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/03-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/03-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/04-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/04-bottom-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/05-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/05-top-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/06-middle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/06-middle-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/07-comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/07-comma.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/08-diag-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/08-diag-top-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/09-center-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/09-center-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/10-diag-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/10-diag-top-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/11-middle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/11-middle-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/12-diag-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/12-diag-bottom-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/13-center-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/13-center-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/14-diag-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/14-diag-bottom-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/15-dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/15-dot.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/alphanum-thin/full.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/00-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/00-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/01-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/01-top-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/02-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/02-bottom-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/03-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/03-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/04-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/04-bottom-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/05-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/05-top-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/06-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/06-middle.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/07-comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/07-comma.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/08-center-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/08-center-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/09-center-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/09-center-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/full-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/full-10.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-bold/full.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/00-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/00-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/01-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/01-top-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/02-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/02-bottom-right.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/03-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/03-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/04-bottom-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/04-bottom-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/05-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/05-top-left.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/06-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/06-middle.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/07-comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/07-comma.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/08-center-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/08-center-top.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/09-center-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/09-center-bottom.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/full-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/full-10.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/AlphaNumeric/numeric-thin/full.svg -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Blur.frag -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Blur.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Blur.vert -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Convert.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Convert.frag -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Convert.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Convert.vert -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Dmd.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Dmd.frag -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Dmd.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Dmd.vert -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/DmdPaddingSetting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/DmdPaddingSetting.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/DmdPaddingSetting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/DmdPaddingSetting.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/DmdSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/DmdSettings.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/DmdSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/DmdSettings.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/DmdStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/DmdStyle.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/Helper.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/OpenGLControlExt.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/OpenGLControlExt.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/OpenGLControlExt.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/OpenGLControlExt.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/README.md -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/SliderValueSetting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/SliderValueSetting.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/SliderValueSetting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/SliderValueSetting.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/VirtualDmdControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/VirtualDmdControl.xaml -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/VirtualDmdControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/VirtualDmdControl.xaml.cs -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-128x16-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-128x16-mono.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-128x16-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-128x16-tint.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-128x32-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-128x32-color.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-128x32-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-128x32-mono.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-128x32-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-128x32-tint.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-192x64-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-192x64-mono.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-192x64-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-192x64-tint.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-32x8-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-32x8-mono.png -------------------------------------------------------------------------------- /LibDmd/Output/Virtual/Dmd/preview-32x8-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/Virtual/Dmd/preview-32x8-tint.png -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMD.cs -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMDBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMDBase.cs -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMDHD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMDHD.cs -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMDHDWiFi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMDHDWiFi.cs -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMDUsbBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMDUsbBase.cs -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMDWiFi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMDWiFi.cs -------------------------------------------------------------------------------- /LibDmd/Output/ZeDMD/ZeDMDWiFiBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Output/ZeDMD/ZeDMDWiFiBase.cs -------------------------------------------------------------------------------- /LibDmd/Processor/AbstractProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Processor/AbstractProcessor.cs -------------------------------------------------------------------------------- /LibDmd/Processor/GridProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Processor/GridProcessor.cs -------------------------------------------------------------------------------- /LibDmd/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LibDmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/README.md -------------------------------------------------------------------------------- /LibDmd/RawRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/RawRenderer.cs -------------------------------------------------------------------------------- /LibDmd/RenderGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/RenderGraph.cs -------------------------------------------------------------------------------- /LibDmd/RenderGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/RenderGraph.png -------------------------------------------------------------------------------- /LibDmd/RenderGraphCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/RenderGraphCollection.cs -------------------------------------------------------------------------------- /LibDmd/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/app.config -------------------------------------------------------------------------------- /LibDmd/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/icon.png -------------------------------------------------------------------------------- /LibDmd/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/LibDmd/packages.config -------------------------------------------------------------------------------- /PinMameDevice/DmdDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/DmdDevice.cs -------------------------------------------------------------------------------- /PinMameDevice/DmdDevice.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/DmdDevice.ini -------------------------------------------------------------------------------- /PinMameDevice/DmdDevice.log.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/DmdDevice.log.config -------------------------------------------------------------------------------- /PinMameDevice/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/FodyWeavers.xml -------------------------------------------------------------------------------- /PinMameDevice/PinMameDevice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/PinMameDevice.csproj -------------------------------------------------------------------------------- /PinMameDevice/PinballFX_IDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/PinballFX_IDs.md -------------------------------------------------------------------------------- /PinMameDevice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PinMameDevice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/README.md -------------------------------------------------------------------------------- /PinMameDevice/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/app.config -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/bally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/bally.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/glass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/glass1.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/glass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/glass2.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/glass3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/glass3.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/metal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/metal1.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/metal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/metal2.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/metal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/metal3.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/frames/metal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/frames/metal4.png -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/broken1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/broken1.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/broken2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/broken2.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass1.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass2.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass3.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass4.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass5.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass6.jpg -------------------------------------------------------------------------------- /PinMameDevice/data/textures/glasses/glass7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/data/textures/glasses/glass7.jpg -------------------------------------------------------------------------------- /PinMameDevice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/packages.config -------------------------------------------------------------------------------- /PinMameDevice/vendor/VPinMAME.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/PinMameDevice/vendor/VPinMAME.dll -------------------------------------------------------------------------------- /ProPinballBridge/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/AssemblyInfo.cpp -------------------------------------------------------------------------------- /ProPinballBridge/ProPinballBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/ProPinballBridge.cpp -------------------------------------------------------------------------------- /ProPinballBridge/ProPinballBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/ProPinballBridge.h -------------------------------------------------------------------------------- /ProPinballBridge/ProPinballBridge.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/ProPinballBridge.vcxproj -------------------------------------------------------------------------------- /ProPinballBridge/ProPinballBridge.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/ProPinballBridge.vcxproj.filters -------------------------------------------------------------------------------- /ProPinballBridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/README.md -------------------------------------------------------------------------------- /ProPinballBridge/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/Stdafx.cpp -------------------------------------------------------------------------------- /ProPinballBridge/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/Stdafx.h -------------------------------------------------------------------------------- /ProPinballBridge/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/app.ico -------------------------------------------------------------------------------- /ProPinballBridge/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/app.rc -------------------------------------------------------------------------------- /ProPinballBridge/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/packages.config -------------------------------------------------------------------------------- /ProPinballBridge/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballBridge/resource.h -------------------------------------------------------------------------------- /ProPinballDmdSlave/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballDmdSlave/App.config -------------------------------------------------------------------------------- /ProPinballDmdSlave/ProPinballDmdSlave.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballDmdSlave/ProPinballDmdSlave.csproj -------------------------------------------------------------------------------- /ProPinballDmdSlave/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballDmdSlave/Program.cs -------------------------------------------------------------------------------- /ProPinballDmdSlave/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballDmdSlave/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProPinballSlave/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/AssemblyInfo.cpp -------------------------------------------------------------------------------- /ProPinballSlave/ProPinballSlave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/ProPinballSlave.cpp -------------------------------------------------------------------------------- /ProPinballSlave/ProPinballSlave.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/ProPinballSlave.vcxproj -------------------------------------------------------------------------------- /ProPinballSlave/ProPinballSlave.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/ProPinballSlave.vcxproj.filters -------------------------------------------------------------------------------- /ProPinballSlave/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/ReadMe.txt -------------------------------------------------------------------------------- /ProPinballSlave/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/app.ico -------------------------------------------------------------------------------- /ProPinballSlave/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/app.rc -------------------------------------------------------------------------------- /ProPinballSlave/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/packages.config -------------------------------------------------------------------------------- /ProPinballSlave/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/resource.h -------------------------------------------------------------------------------- /ProPinballSlave/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/stdafx.cpp -------------------------------------------------------------------------------- /ProPinballSlave/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/ProPinballSlave/stdafx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/README.md -------------------------------------------------------------------------------- /VersionAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/VersionAssemblyInfo.cs -------------------------------------------------------------------------------- /resharper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freezy/dmd-extensions/HEAD/resharper.svg --------------------------------------------------------------------------------