├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── README.md └── _config.yml └── src ├── DepCtrls ├── DepCtrl_BasicVisualElements │ ├── DepCtrl_BasicVisualElements.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_BurningMineCurves │ ├── DepCtrl_BurningMineCurves.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_Painter_Layer1 │ ├── DepCtrl_Painter_Layer1.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_Painter_Layer1_With_TextSupport │ ├── DepCtrl_Painter_Layer1_With_TextSupport.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_Painter_Layer2 │ ├── DepCtrl_Painter_Layer2.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_PixelFarm_CpuBlit_Layer1 │ ├── DepCtrl_PixelFarm_CpuBlit_Layer1.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_PixelFarm_CpuBlit_Layer2 │ ├── DepCtrl_PixelFarm_CpuBlit_Layer2.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_PixelFarm_Drawing_GL │ ├── DepCtrl_PixelFarm_Drawing_GL.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_PixelFarm_Vectors │ ├── DepCtrl_PixelFarm_Vectors.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DepCtrl_PixelFarm_VectorsAndUtils │ ├── DepCtrl_PixelFarm_VectorsAndUtils.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DeptCtrl_BackEnd_Tesselate │ ├── DepCtrl_BackEnd_Tesselate.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── DeptCtrl_BackEnd_Triangulation │ ├── DepCtrl_BackEnd_Triangulation.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── x_notused │ ├── DTSweepBasin.cs │ ├── DTSweepEdgeEvent.cs │ ├── DTSweepPointComparator.cs │ ├── FixedArray3.cs │ ├── FixedBitArray3.cs │ ├── PolygonSet.cs │ └── TriangulationConstraint.cs ├── MiniDev.sln ├── PixelFarm ├── BackEnd.BurningMineCurve_SH │ ├── BackEnd.BurningMineCurve_SH.projitems │ ├── BackEnd.BurningMineCurve_SH.shproj │ ├── CubicBezier.cs │ ├── CurveBuilder.cs │ ├── CurveFit.cs │ ├── CurveFitBase.cs │ ├── CurvePreprocess.cs │ ├── Spline.cs │ ├── SplineBuilder.cs │ └── VectorHelper.cs ├── BackEnd.ImgCodecs │ └── BackEnd.ImgCodecs.csproj ├── BackEnd.MiniOpenTK │ ├── DevOpenTK.sln │ ├── examples │ │ ├── BasicTriangle │ │ │ ├── BasicTriangle.csproj │ │ │ ├── Program.cs │ │ │ ├── app.config │ │ │ └── packages.config │ │ ├── BlankWindow │ │ │ ├── BlankWindow.csproj │ │ │ ├── Program.cs │ │ │ └── packages.config │ │ └── OpenTK.Examples.sln │ └── src │ │ ├── Builds │ │ ├── NETSTD2 │ │ │ ├── MiniOpenTKLevel1 │ │ │ │ ├── MiniOpenTKLevel1.csproj │ │ │ │ └── Minimal.cs │ │ │ └── MiniOpenTKLevel2 │ │ │ │ └── MiniOpenTKLevel2.csproj │ │ └── Net20 │ │ │ ├── MiniOpenTKLevel1 │ │ │ ├── MiniOpenTKLevel1.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── MiniOpenTKLevel2 │ │ │ ├── MiniOpenTKLevel2.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── MiniOpenTK_Net20 │ │ │ ├── MiniOpenTK_Net20.csproj │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Generator.Bind │ │ ├── 0_MyExtension │ │ │ └── MyEsGenerator.cs │ │ ├── BindStreamWriter.cs │ │ ├── CL │ │ │ └── CLGenerator.cs │ │ ├── CSharpSpecWriter.cs │ │ ├── DocProcessor.cs │ │ ├── Documentation │ │ │ ├── changelog.txt │ │ │ └── todo.txt │ │ ├── ES │ │ │ ├── ES2Generator.cs │ │ │ ├── ES31Generator.cs │ │ │ ├── ES3Generator.cs │ │ │ └── ESGenerator.cs │ │ ├── EnumProcessor.cs │ │ ├── FuncProcessor.cs │ │ ├── GL2 │ │ │ ├── GL2Generator.cs │ │ │ ├── GL4Generator.cs │ │ │ └── Generator.cs │ │ ├── Generator.Bind.csproj │ │ ├── IBind.cs │ │ ├── ISpecReader.cs │ │ ├── Main.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Bind.settings │ │ │ ├── Resources.resx │ │ │ └── app.config │ │ ├── Settings.cs │ │ ├── Specifications │ │ │ ├── CL10 │ │ │ │ ├── overrides.xml │ │ │ │ └── signatures.xml │ │ │ ├── ES10 │ │ │ │ ├── overrides.xml │ │ │ │ └── signatures.xml │ │ │ ├── ES11 │ │ │ │ ├── overrides.xml │ │ │ │ └── signatures.xml │ │ │ ├── ES20 │ │ │ │ ├── overrides.xml │ │ │ │ └── signatures.xml │ │ │ ├── GL2 │ │ │ │ ├── ES │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ └── obsolete.xml │ │ │ │ │ └── 3.1 │ │ │ │ │ │ ├── KHR_compute_shader.xml │ │ │ │ │ │ ├── KHR_draw_indirect.xml │ │ │ │ │ │ ├── KHR_explicit_uniform_location.xml │ │ │ │ │ │ ├── KHR_framebuffer_no_attachments.xml │ │ │ │ │ │ ├── KHR_program_interface_queries.xml │ │ │ │ │ │ ├── KHR_separate_shader_objects.xml │ │ │ │ │ │ ├── KHR_shader_atomic_counters.xml │ │ │ │ │ │ ├── KHR_shader_image_load_store.xml │ │ │ │ │ │ ├── KHR_shader_storage_buffer_object.xml │ │ │ │ │ │ ├── KHR_stencil_texturing.xml │ │ │ │ │ │ ├── KHR_texture_gather.xml │ │ │ │ │ │ ├── KHR_texture_storage_multisample.xml │ │ │ │ │ │ └── KHR_vertex_attrib_binding.xml │ │ │ │ ├── GL │ │ │ │ │ └── 4.5 │ │ │ │ │ │ ├── ARB_ES3_1_compatibility.xml │ │ │ │ │ │ ├── ARB_direct_state_access.xml │ │ │ │ │ │ └── ARB_robustness.xml │ │ │ │ ├── gl.tm │ │ │ │ ├── overrides.xml │ │ │ │ └── signatures.xml │ │ │ ├── Glu │ │ │ │ ├── enumglu.spec │ │ │ │ ├── glu.spec │ │ │ │ └── glu.tm │ │ │ ├── Glx │ │ │ │ ├── glx.spec │ │ │ │ ├── glx.tm │ │ │ │ ├── glxenum.spec │ │ │ │ ├── glxenumext.spec │ │ │ │ └── glxext.spec │ │ │ ├── License.txt │ │ │ ├── Wgl │ │ │ │ ├── wgl.spec │ │ │ │ ├── wgl.tm │ │ │ │ ├── wglenum.spec │ │ │ │ ├── wglenumext.spec │ │ │ │ └── wglext.spec │ │ │ └── csharp.tm │ │ ├── Structures │ │ │ ├── Constant.cs │ │ │ ├── Delegate.cs │ │ │ ├── Documentation.cs │ │ │ ├── Enum.cs │ │ │ ├── FlowDirection.cs │ │ │ ├── Function.cs │ │ │ ├── Parameter.cs │ │ │ └── Type.cs │ │ ├── Utilities.cs │ │ └── XmlSpecReader.cs │ │ ├── MiniOpenTKWinForms │ │ ├── MiniOpenTKWinForms.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── OpenTK │ │ ├── .gitignore │ │ ├── 0_MyExtension │ │ ├── ES20mini │ │ │ ├── ES20.cs │ │ │ ├── ES20Delegate.cs │ │ │ ├── ES20Enum.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── Helper.cs │ │ ├── ES30mini │ │ │ ├── ES30.cs │ │ │ ├── ES30Delegate.cs │ │ │ ├── ES30Enum.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── Helper.cs │ │ ├── ExternalGraphicsContext.cs │ │ ├── Factory.cs │ │ ├── IPlatformFactory.cs │ │ └── MyExt.cs │ │ ├── 0_MyExtension2 │ │ └── IPlatformFactory2.cs │ │ ├── Audio │ │ ├── AudioCapture.cs │ │ ├── AudioContext.cs │ │ ├── AudioContextException.cs │ │ ├── AudioDeviceEnumerator.cs │ │ ├── AudioDeviceErrorChecker.cs │ │ ├── AudioDeviceException.cs │ │ ├── AudioException.cs │ │ ├── AudioValueException.cs │ │ └── OpenAL │ │ │ ├── AL │ │ │ ├── AL.cs │ │ │ ├── ALEnums.cs │ │ │ ├── EffectsExtension.cs │ │ │ ├── EffectsExtensionEnums.cs │ │ │ ├── EffectsExtensionPresets.cs │ │ │ └── XRamExtension.cs │ │ │ └── Alc │ │ │ ├── Alc.cs │ │ │ └── AlcEnums.cs │ │ ├── AutoGeneratedAttribute.cs │ │ ├── BindingsBase.cs │ │ ├── BlittableValueType.cs │ │ ├── Compute │ │ ├── CL10 │ │ │ ├── CL.cs │ │ │ ├── CLHelper.cs │ │ │ ├── Core.cs │ │ │ ├── Delegates.cs │ │ │ ├── Enums.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── ImageFormat.cs │ │ ├── CLHelper.cs │ │ ├── CommandQueue.cs │ │ ├── ComputeContext.cs │ │ ├── Configuration.cs │ │ ├── Device.cs │ │ ├── Enums.cs │ │ ├── Event.cs │ │ ├── Kernel.cs │ │ ├── Memory.cs │ │ ├── Platform.cs │ │ ├── Profiler.cs │ │ ├── Program.cs │ │ ├── Sampler.cs │ │ └── Structs.cs │ │ ├── Configuration.cs │ │ ├── ContextHandle.cs │ │ ├── CountAttribute.cs │ │ ├── DisplayDevice.cs │ │ ├── DisplayIndex.cs │ │ ├── DisplayResolution.cs │ │ ├── Exceptions.cs │ │ ├── FrameEventArgs.cs │ │ ├── GameWindow.cs │ │ ├── GameWindowFlags.cs │ │ ├── Graphics │ │ ├── Color4.cs │ │ ├── ColorFormat.cs │ │ ├── ES10 │ │ │ ├── Core.cs │ │ │ ├── ES.cs │ │ │ ├── Enums.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── Helper.cs │ │ ├── ES11 │ │ │ ├── ES11.cs │ │ │ ├── ES11Enums.cs │ │ │ ├── ES11Obsolete.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── Helper.cs │ │ ├── ES20 │ │ │ ├── ES20.cs │ │ │ ├── ES20Enums.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── Helper.cs │ │ ├── ES30 │ │ │ ├── ES30.cs │ │ │ ├── ES30Enums.cs │ │ │ ├── ErrorHelper.cs │ │ │ └── Helper.cs │ │ ├── ES31 │ │ │ ├── ES31.Enums.cs │ │ │ └── ES31.cs │ │ ├── GraphicsBindingsBase.cs │ │ ├── GraphicsContext.cs │ │ ├── GraphicsContextBase.cs │ │ ├── GraphicsContextException.cs │ │ ├── GraphicsContextFlags.cs │ │ ├── GraphicsContextMissingException.cs │ │ ├── GraphicsContextVersion.cs │ │ ├── GraphicsErrorException.cs │ │ ├── GraphicsExceptions.cs │ │ ├── GraphicsMode.cs │ │ ├── GraphicsModeComparer.cs │ │ ├── GraphicsModeException.cs │ │ ├── IGraphicsContext.cs │ │ ├── IGraphicsMode.cs │ │ ├── OpenGL │ │ │ ├── ErrorHelper.cs │ │ │ ├── GL.cs │ │ │ ├── GLEnums.cs │ │ │ ├── GLHelper.cs │ │ │ └── GLObsolete.cs │ │ └── OpenGL4 │ │ │ ├── ErrorHelper.cs │ │ │ ├── GL4.cs │ │ │ ├── GL4Enums.cs │ │ │ └── Helper.cs │ │ ├── IGameWindow.cs │ │ ├── INativeWindow.cs │ │ ├── Input │ │ ├── ButtonState.cs │ │ ├── Buttons.cs │ │ ├── ConfigurationType.cs │ │ ├── FileDropEventArgs.cs │ │ ├── GamePad.cs │ │ ├── GamePadAxes.cs │ │ ├── GamePadButtons.cs │ │ ├── GamePadCapabilities.cs │ │ ├── GamePadConfiguration.cs │ │ ├── GamePadConfigurationDatabase.cs │ │ ├── GamePadConfigurationItem.cs │ │ ├── GamePadConfigurationSource.cs │ │ ├── GamePadConfigurationTarget.cs │ │ ├── GamePadDPad.cs │ │ ├── GamePadState.cs │ │ ├── GamePadThumbSticks.cs │ │ ├── GamePadTriggers.cs │ │ ├── GamePadType.cs │ │ ├── HatPosition.cs │ │ ├── IGamePadDriver.cs │ │ ├── IInputDevice.cs │ │ ├── IInputDriver2.cs │ │ ├── IJoystickDriver2.cs │ │ ├── IKeyboardDriver2.cs │ │ ├── IMouseDriver2.cs │ │ ├── Joystick.cs │ │ ├── JoystickCapabilities.cs │ │ ├── JoystickDevice.cs │ │ ├── JoystickHat.cs │ │ ├── JoystickHatState.cs │ │ ├── JoystickState.cs │ │ ├── Key.cs │ │ ├── KeyModifiers.cs │ │ ├── Keyboard.cs │ │ ├── KeyboardDevice.cs │ │ ├── KeyboardKeyEventArgs.cs │ │ ├── KeyboardState.cs │ │ ├── Mouse.cs │ │ ├── MouseButton.cs │ │ ├── MouseDevice.cs │ │ ├── MouseEventArgs.cs │ │ ├── MouseScroll.cs │ │ └── MouseState.cs │ │ ├── IntPtrEqualityComparer.cs │ │ ├── InteropHelper.cs │ │ ├── KeyPressEventArgs.cs │ │ ├── Math │ │ ├── BezierCurve.cs │ │ ├── BezierCurveCubic.cs │ │ ├── BezierCurveQuadric.cs │ │ ├── Box2.cs │ │ ├── Box2d.cs │ │ ├── Half.cs │ │ ├── MathHelper.cs │ │ ├── Matrix2.cs │ │ ├── Matrix2d.cs │ │ ├── Matrix2x3.cs │ │ ├── Matrix2x3d.cs │ │ ├── Matrix2x4.cs │ │ ├── Matrix2x4d.cs │ │ ├── Matrix3.cs │ │ ├── Matrix3d.cs │ │ ├── Matrix3x2.cs │ │ ├── Matrix3x2d.cs │ │ ├── Matrix3x4.cs │ │ ├── Matrix3x4d.cs │ │ ├── Matrix4.cs │ │ ├── Matrix4d.cs │ │ ├── Matrix4x2.cs │ │ ├── Matrix4x2d.cs │ │ ├── Matrix4x3.cs │ │ ├── Matrix4x3d.cs │ │ ├── Point.cs │ │ ├── Quaternion.cs │ │ ├── Quaterniond.cs │ │ ├── Rectangle.cs │ │ ├── Size.cs │ │ ├── Vector2.cs │ │ ├── Vector2d.cs │ │ ├── Vector2h.cs │ │ ├── Vector3.cs │ │ ├── Vector3d.cs │ │ ├── Vector3h.cs │ │ ├── Vector4.cs │ │ ├── Vector4d.cs │ │ └── Vector4h.cs │ │ ├── MiniOpenTK_Core1.projitems │ │ ├── MiniOpenTK_Core2.projitems │ │ ├── MiniOpenTK_Level1.shproj │ │ ├── MiniOpenTK_Level2.shproj │ │ ├── MouseCursor.cs │ │ ├── NativeWindow.cs │ │ ├── OpenTK.Android.csproj │ │ ├── OpenTK.Android.csproj.paket.template │ │ ├── OpenTK.csproj │ │ ├── OpenTK.csproj.paket.template │ │ ├── OpenTK.dll.config │ │ ├── OpenTK.iOS.csproj │ │ ├── OpenTK.iOS.csproj.paket.template │ │ ├── Platform │ │ ├── Android │ │ │ ├── AndroidDisplayDeviceDriver.cs │ │ │ ├── AndroidFactory.cs │ │ │ ├── AndroidGameView.cs │ │ │ ├── AndroidGraphicsContext.cs │ │ │ ├── AndroidGraphicsMode.cs │ │ │ ├── Enums.cs │ │ │ ├── GLCalls.cs │ │ │ └── GameViewBase.cs │ │ ├── Common │ │ │ └── Hid.cs │ │ ├── DesktopGraphicsContext.cs │ │ ├── DeviceCollection.cs │ │ ├── DisplayDeviceBase.cs │ │ ├── Dummy │ │ │ ├── DummyGLContext.cs │ │ │ └── DummyWindowInfo.cs │ │ ├── Egl │ │ │ ├── AngleWindowInfo.cs │ │ │ ├── Egl.cs │ │ │ ├── EglAnglePlatformFactory.cs │ │ │ ├── EglContext.cs │ │ │ ├── EglException.cs │ │ │ ├── EglGraphicsMode.cs │ │ │ ├── EglMacPlatformFactory.cs │ │ │ ├── EglSdl2PlatformFactory.cs │ │ │ ├── EglUnixContext.cs │ │ │ ├── EglWinContext.cs │ │ │ ├── EglWinPlatformFactory.cs │ │ │ ├── EglWindowInfo.cs │ │ │ └── EglX11PlatformFactory.cs │ │ ├── EmbeddedGraphicsContext.cs │ │ ├── Factory.cs │ │ ├── IDisplayDeviceDriver.cs │ │ ├── IPlatformFactory.cs │ │ ├── IPlatformFactory_Input.cs │ │ ├── IWindowInfo.cs │ │ ├── Linux │ │ │ ├── Bindings │ │ │ │ ├── Drm.cs │ │ │ │ ├── Evdev.cs │ │ │ │ ├── Gbm.cs │ │ │ │ ├── Kms.cs │ │ │ │ ├── LibInput.cs │ │ │ │ ├── Libc.cs │ │ │ │ ├── Poll.cs │ │ │ │ ├── Terminal.cs │ │ │ │ └── Udev.cs │ │ │ ├── DefaultCursor.cs │ │ │ ├── LinuxDisplayDriver.cs │ │ │ ├── LinuxFactory.cs │ │ │ ├── LinuxGraphicsContext.cs │ │ │ ├── LinuxInput.cs │ │ │ ├── LinuxJoystick.cs │ │ │ ├── LinuxKeyboardTTY.cs │ │ │ ├── LinuxNativeWindow.cs │ │ │ └── LinuxWindowInfo.cs │ │ ├── MacOS │ │ │ ├── Carbon │ │ │ │ ├── Cgl.cs │ │ │ │ └── MacOSKeys.cs │ │ │ ├── CarbonWindowInfo.cs │ │ │ ├── Cocoa │ │ │ │ ├── Class.cs │ │ │ │ ├── Cocoa.cs │ │ │ │ ├── NSApplication.cs │ │ │ │ ├── NSApplicationActivationPolicy.cs │ │ │ │ ├── NSApplicationPresentationOptions.cs │ │ │ │ ├── NSAutoreleasePool.cs │ │ │ │ ├── NSBackingStore.cs │ │ │ │ ├── NSBitmapFormat.cs │ │ │ │ ├── NSDragOperation.cs │ │ │ │ ├── NSEventModifierMask.cs │ │ │ │ ├── NSEventType.cs │ │ │ │ ├── NSFloat.cs │ │ │ │ ├── NSOpenGLContextParameter.cs │ │ │ │ ├── NSOpenGLPixelFormatAttribute.cs │ │ │ │ ├── NSOpenGLProfile.cs │ │ │ │ ├── NSTrackingAreaOptions.cs │ │ │ │ ├── NSWindowStyle.cs │ │ │ │ └── Selector.cs │ │ │ ├── CocoaContext.cs │ │ │ ├── CocoaNativeWindow.cs │ │ │ ├── CocoaWindowInfo.cs │ │ │ ├── CoreVideo.cs │ │ │ ├── HIDInput.cs │ │ │ ├── MacOSException.cs │ │ │ ├── MacOSFactory.cs │ │ │ ├── MacOSKeyMap.cs │ │ │ ├── NS.cs │ │ │ ├── Quartz │ │ │ │ ├── CoreFoundation.cs │ │ │ │ ├── DisplayServices.cs │ │ │ │ └── EventServices.cs │ │ │ └── QuartzDisplayDeviceDriver.cs │ │ ├── MappedGamePadDriver.cs │ │ ├── NativeWindowBase.cs │ │ ├── PlatformException.cs │ │ ├── PlatformFactoryBase.cs │ │ ├── SDL2 │ │ │ ├── Sdl2.cs │ │ │ ├── Sdl2DisplayDeviceDriver.cs │ │ │ ├── Sdl2Factory.cs │ │ │ ├── Sdl2GraphicsContext.cs │ │ │ ├── Sdl2GraphicsMode.cs │ │ │ ├── Sdl2InputDriver.cs │ │ │ ├── Sdl2JoystickDriver.cs │ │ │ ├── Sdl2KeyMap.cs │ │ │ ├── Sdl2Keyboard.cs │ │ │ ├── Sdl2Mouse.cs │ │ │ ├── Sdl2NativeWindow.cs │ │ │ └── Sdl2WindowInfo.cs │ │ ├── Utilities.cs │ │ ├── Windows │ │ │ ├── API.cs │ │ │ ├── Bindings │ │ │ │ ├── HidProtocol.cs │ │ │ │ ├── Wgl.cs │ │ │ │ └── WglEnums.cs │ │ │ ├── WglHelper.cs │ │ │ ├── WinDisplayDevice.cs │ │ │ ├── WinFactory.cs │ │ │ ├── WinGLContext.cs │ │ │ ├── WinGLNative.cs │ │ │ ├── WinGraphicsMode.cs │ │ │ ├── WinInputBase.cs │ │ │ ├── WinKeyMap.cs │ │ │ ├── WinRawInput.cs │ │ │ ├── WinRawJoystick.cs │ │ │ ├── WinRawKeyboard.cs │ │ │ ├── WinRawMouse.cs │ │ │ ├── WinWindowInfo.cs │ │ │ └── XInputJoystick.cs │ │ ├── X11 │ │ │ ├── API.cs │ │ │ ├── Bindings │ │ │ │ ├── DL.cs │ │ │ │ ├── Glx.cs │ │ │ │ ├── INotify.cs │ │ │ │ ├── XI.cs │ │ │ │ └── Xkb.cs │ │ │ ├── Functions.cs │ │ │ ├── Structs.cs │ │ │ ├── X11DisplayDevice.cs │ │ │ ├── X11Factory.cs │ │ │ ├── X11GLContext.cs │ │ │ ├── X11GLNative.cs │ │ │ ├── X11GraphicsMode.cs │ │ │ ├── X11Input.cs │ │ │ ├── X11KeyMap.cs │ │ │ ├── X11Keyboard.cs │ │ │ ├── X11Mouse.cs │ │ │ ├── X11WindowInfo.cs │ │ │ ├── XI2Input.cs │ │ │ └── XI2MouseKeyboard.cs │ │ └── iPhoneOS │ │ │ ├── iPhoneDisplayDeviceDriver.cs │ │ │ ├── iPhoneFactory.cs │ │ │ ├── iPhoneOSGameView.cs │ │ │ └── iPhoneOSGraphicsContext.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RewrittenAttribute.cs │ │ ├── SlotAttribute.cs │ │ ├── Toolkit.cs │ │ ├── ToolkitOptions.cs │ │ ├── WindowBorder.cs │ │ ├── WindowIcon.cs │ │ └── WindowState.cs ├── BackEnd.NativeWindows │ ├── BackEnd.NativeWindows.csproj │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── BackEnd.NativeWindows_SH │ ├── BackEnd.NativeWindows_SH.projitems │ ├── BackEnd.NativeWindows_SH.shproj │ ├── GLFW3_binder.cs │ ├── GlfwOpenTKContext.cs │ └── GlfwWindow.cs ├── BackEnd.PaintFx │ ├── PdnPixelEffectPixelFarm │ │ ├── 00_Porting │ │ │ └── PORTING_NOTMERGE.cs │ │ ├── BackEnd.PaintFx.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── PdnSharedProject │ │ ├── 01_Core │ │ ├── Color │ │ │ ├── ColorBgra.cs │ │ │ ├── HsvColor.cs │ │ │ └── RgbColor.cs │ │ ├── PdnResources.cs │ │ ├── PixelOps │ │ │ ├── BinaryPixelOp.cs │ │ │ ├── BinaryPixelOps.cs │ │ │ ├── IPixelOp.cs │ │ │ ├── PixelOp.cs │ │ │ ├── UnaryPixelOp.cs │ │ │ └── UnaryPixelOps.cs │ │ ├── RenderArgs.cs │ │ ├── Renderer │ │ │ ├── GradientRenderer.cs │ │ │ ├── GradientRenderers.cs │ │ │ ├── Histogram.cs │ │ │ ├── HistogramLuminosity.cs │ │ │ └── HistogramRGB.cs │ │ ├── ResamplingAlgorithm.cs │ │ ├── Scanline.cs │ │ ├── Surface.cs │ │ ├── UserBlendOps │ │ │ ├── UserBlendOp.cs │ │ │ ├── UserBlendOps.Generated.H.cs │ │ │ ├── UserBlendOps.Generated.cs │ │ │ └── UserBlendOps.cs │ │ └── Utility.cs │ │ ├── 02_Fx │ │ ├── Blur │ │ │ ├── BrightnessAndContrastRenderer.cs │ │ │ ├── MotionBlurRenderer.cs │ │ │ └── ZoomBlurEffRenderer.cs │ │ ├── Convolution │ │ │ ├── ColorDiffEffect.cs │ │ │ ├── ConvolutionRenderer.cs │ │ │ ├── EdgeDetectRenderer.cs │ │ │ ├── EmbossRenderer.cs │ │ │ ├── GaussainBlurRenderer.cs │ │ │ └── ReliefEffectRenderer.cs │ │ ├── Histogram │ │ │ ├── HistogramRenderer.cs │ │ │ ├── MedianRenderer.cs │ │ │ ├── OutlineRenderer.cs │ │ │ ├── ReduceNoiseRenderer.cs │ │ │ ├── SharpenRenderer.cs │ │ │ └── UnfocusRenderer.cs │ │ ├── Levels │ │ │ ├── AutoLevelRenderer.cs │ │ │ └── SepiaRenderer.cs │ │ ├── Material │ │ │ ├── BlugeEffectRenderer.cs │ │ │ ├── CloudEffect.cs │ │ │ ├── GlowRenderer.cs │ │ │ ├── OilPaintRenderer.cs │ │ │ ├── PencilSketchRenderer.cs │ │ │ ├── TileRenderer.cs │ │ │ └── TwistRenderer.cs │ │ ├── Others │ │ │ ├── InkSketchRenderer.cs │ │ │ ├── JulianFractalRenderer.cs │ │ │ ├── PerlinNoise2D.cs │ │ │ └── RotateAndZoomRenderer.cs │ │ ├── PixelOps │ │ │ ├── HueAndSatRenderer.cs │ │ │ ├── InvertColorRenderer.cs │ │ │ └── PosterizeRenderer.cs │ │ ├── TransformEffect │ │ │ ├── RotateZoomEffect.cs │ │ │ └── RotateZoomEffectConfigToken.cs │ │ └── Wrap │ │ │ ├── PolarInversionEffect.cs │ │ │ ├── WarpEdgeBehavior.cs │ │ │ └── WrapBasedEffRenderer.cs │ │ ├── EffectRendererBase.cs │ │ ├── PaintFx.Shared.shproj │ │ ├── PdnSharedProject.projitems │ │ └── PlatformMemory.cs ├── BackEnd.SharpZipLib │ ├── BZip2 │ │ ├── BZip2.cs │ │ ├── BZip2Constants.cs │ │ ├── BZip2Exception.cs │ │ ├── BZip2InputStream.cs │ │ └── BZip2OutputStream.cs │ ├── BackEnd.SharpZipLib.csproj │ ├── Checksum │ │ ├── Adler32.cs │ │ ├── BZip2Crc.cs │ │ ├── Crc32.cs │ │ └── IChecksum.cs │ ├── Core │ │ ├── FileSystemScanner.cs │ │ ├── INameTransform.cs │ │ ├── IScanFilter.cs │ │ ├── NameFilter.cs │ │ ├── PathFilter.cs │ │ ├── StreamUtils.cs │ │ └── WindowsPathUtils.cs │ ├── Encryption │ │ ├── PkzipClassic.cs │ │ ├── ZipAESStream.cs │ │ └── ZipAESTransform.cs │ ├── GZip │ │ ├── GZip.cs │ │ ├── GZipConstants.cs │ │ ├── GZipException.cs │ │ ├── GzipInputStream.cs │ │ └── GzipOutputStream.cs │ ├── LICENSE.txt │ ├── Lzw │ │ ├── LzwConstants.cs │ │ ├── LzwException.cs │ │ └── LzwInputStream.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SharpZipBaseException.cs │ ├── Tar │ │ ├── InvalidHeaderException.cs │ │ ├── TarArchive.cs │ │ ├── TarBuffer.cs │ │ ├── TarEntry.cs │ │ ├── TarException.cs │ │ ├── TarHeader.cs │ │ ├── TarInputStream.cs │ │ └── TarOutputStream.cs │ └── Zip │ │ ├── Compression │ │ ├── Deflater.cs │ │ ├── DeflaterConstants.cs │ │ ├── DeflaterEngine.cs │ │ ├── DeflaterHuffman.cs │ │ ├── DeflaterPending.cs │ │ ├── Inflater.cs │ │ ├── InflaterDynHeader.cs │ │ ├── InflaterHuffmanTree.cs │ │ ├── PendingBuffer.cs │ │ └── Streams │ │ │ ├── DeflaterOutputStream.cs │ │ │ ├── InflaterInputStream.cs │ │ │ ├── OutputWindow.cs │ │ │ └── StreamManipulator.cs │ │ ├── FastZip.cs │ │ ├── IEntryFactory.cs │ │ ├── WindowsNameTransform.cs │ │ ├── ZipConstants.cs │ │ ├── ZipEntry.cs │ │ ├── ZipEntryFactory.cs │ │ ├── ZipException.cs │ │ ├── ZipExtraData.cs │ │ ├── ZipFile.cs │ │ ├── ZipHelperStream.cs │ │ ├── ZipInputStream.cs │ │ ├── ZipNameTransform.cs │ │ └── ZipOutputStream.cs ├── BackEnd.Tesselate_SH │ ├── ActiveRegion.cs │ ├── BackEnd.Tesselate_SH.projitems │ ├── BackEnd.Tesselate_SH.shproj │ ├── ContourVertex.cs │ ├── Dictionary.cs │ ├── Face.cs │ ├── HalfEdge.cs │ ├── MaxFirstList.cs │ ├── Mesh.cs │ └── Tesselator.cs ├── BackEnd.TreeCollection │ ├── BackEnd.TreeCollection.csproj │ ├── ExtensionAttribute.cs │ ├── General │ │ ├── ISegment.cs │ │ ├── RedBlackTree.cs │ │ └── SegmentTree.cs │ ├── PlainDocument │ │ └── PlainTextDocument.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── BackEnd.Triangulation │ ├── .gitignore │ ├── AUTHORS.txt │ ├── BackEnd.Triangulation.csproj │ ├── Delaunay │ │ ├── AdvancingFront.cs │ │ ├── AdvancingFrontNode.cs │ │ ├── DTSweep.cs │ │ ├── DTSweepConstraint.cs │ │ ├── DTSweepContext.cs │ │ ├── DTSweepDebugContext.cs │ │ ├── DelaunayTriangle.cs │ │ └── PointOnEdgeException.cs │ ├── LICENSE.txt │ ├── P2T.cs │ ├── Polygon │ │ └── Polygon.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.txt │ ├── Sets │ │ ├── ConstrainedPointSet.cs │ │ └── PointSet.cs │ ├── Triangulation.projitems │ ├── Triangulation.shproj │ ├── Triangulation │ │ ├── ITriangulatable.cs │ │ ├── Orientation.cs │ │ ├── TriangulationAlgorithm.cs │ │ ├── TriangulationContext.cs │ │ ├── TriangulationDebugContext.cs │ │ ├── TriangulationMode.cs │ │ ├── TriangulationPoint.cs │ │ └── TriangulationUtil.cs │ └── Util │ │ ├── PointGenerator.cs │ │ └── PolygonGenerator.cs ├── BackEnd.TypeMirror │ ├── BackEnd.TypeMirror.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SimpleReflectionHelper.cs ├── BackEnd.Win32Utils │ ├── BackEnd.Win32Utils.csproj │ ├── MyWin32.cs │ ├── NativeWin32MemoryDc.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Win32_NotUsed.cs ├── ImgCodec.Core │ ├── Color.cs │ ├── ExtendedImage.cs │ ├── ExtraImageInfo.cs │ ├── FlippingType.cs │ ├── Helpers │ │ ├── ExtensionAttribute.cs │ │ ├── ForNet20.cs │ │ └── Guard.cs │ ├── IO │ │ ├── Decoders.cs │ │ ├── Encoders.cs │ │ ├── IImageDecoder.cs │ │ ├── IImageEncoder.cs │ │ └── UnsupportedImageFormatException.cs │ ├── ImageFormatException.cs │ ├── ImageFrameCollection.cs │ ├── ImageProperty.cs │ ├── ImagePropertyCollection.cs │ ├── ImgCodec.Core.csproj │ ├── ImgExtensionMethods.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rectangle.cs │ ├── RotationType.cs │ └── SimpleImage.cs ├── ImgCodec.Gif │ ├── DisposalMethod.cs │ ├── GifDecoder.cs │ ├── GifGraphicsControlExtension.cs │ ├── GifImageDescriptor.cs │ ├── GifLogicalScreenDescriptor.cs │ ├── ImgCodec.Gif.csproj │ ├── LZWDecoder.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── ImgCodec.IconAndCursor │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── IconAndCursorFile.cs │ ├── ImgCodec.IconAndCursor.csproj │ ├── LICENSE.txt │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── ImgCodec.Jpeg │ ├── FluxJpeg.Core │ │ ├── DCT.cs │ │ ├── DecodedJpeg.cs │ │ ├── Decoder │ │ │ ├── HuffmanTable.cs │ │ │ ├── JpegComponent.cs │ │ │ ├── JpegDecoder.cs │ │ │ ├── JpegFrame.cs │ │ │ ├── JpegHuffmanTable.cs │ │ │ ├── JpegQuantizationTable.cs │ │ │ └── JpegScan.cs │ │ ├── Encoder │ │ │ └── JpegEncoder.cs │ │ ├── FDCT.cs │ │ ├── IO │ │ │ ├── BinaryReader.cs │ │ │ ├── BinaryWriter.cs │ │ │ └── JpegBinaryReader.cs │ │ ├── Image.cs │ │ ├── JpegMarker.cs │ │ ├── YCbCr.cs │ │ └── ZigZag.cs │ ├── ImgCodec.Jpeg.csproj │ ├── JpegDecoder.cs │ ├── JpegEncoder.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── ImgCodec.LibJpeg │ ├── BitStream.cs │ ├── BitmapDestination.cs │ ├── Classic │ │ ├── DensityUnit.cs │ │ ├── Internal │ │ │ ├── ComponentBuffer.cs │ │ │ ├── J_BUF_MODE.cs │ │ │ ├── JpegUtils.cs │ │ │ ├── arith_entropy_decoder.cs │ │ │ ├── arith_entropy_encoder.cs │ │ │ ├── bitread_perm_state.cs │ │ │ ├── bitread_working_state.cs │ │ │ ├── d_derived_tbl.cs │ │ │ ├── huff_entropy_decoder.cs │ │ │ ├── huff_entropy_encoder.cs │ │ │ ├── jpeg_c_coef_controller.cs │ │ │ ├── jpeg_c_main_controller.cs │ │ │ ├── jpeg_c_prep_controller.cs │ │ │ ├── jpeg_color_converter.cs │ │ │ ├── jpeg_color_deconverter.cs │ │ │ ├── jpeg_color_quantizer.cs │ │ │ ├── jpeg_comp_master.cs │ │ │ ├── jpeg_d_coef_controller.cs │ │ │ ├── jpeg_d_main_controller.cs │ │ │ ├── jpeg_d_post_controller.cs │ │ │ ├── jpeg_decomp_master.cs │ │ │ ├── jpeg_downsampler.cs │ │ │ ├── jpeg_entropy_decoder.cs │ │ │ ├── jpeg_entropy_encoder.cs │ │ │ ├── jpeg_forward_dct.cs │ │ │ ├── jpeg_input_controller.cs │ │ │ ├── jpeg_inverse_dct.cs │ │ │ ├── jpeg_marker_reader.cs │ │ │ ├── jpeg_marker_writer.cs │ │ │ ├── jpeg_scan_info.cs │ │ │ ├── jpeg_upsampler.cs │ │ │ ├── my_1pass_cquantizer.cs │ │ │ ├── my_2pass_cquantizer.cs │ │ │ ├── my_c_coef_controller.cs │ │ │ ├── my_destination_mgr.cs │ │ │ ├── my_merged_upsampler.cs │ │ │ ├── my_source_mgr.cs │ │ │ ├── my_trans_c_coef_controller.cs │ │ │ └── my_upsampler.cs │ │ ├── JBLOCK.cs │ │ ├── JHUFF_TBL.cs │ │ ├── JPEG_MARKER.cs │ │ ├── JQUANT_TBL.cs │ │ ├── J_COLOR_SPACE.cs │ │ ├── J_COLOR_TRANSFORM.cs │ │ ├── J_DCT_METHOD.cs │ │ ├── J_DITHER_MODE.cs │ │ ├── J_MESSAGE_CODE.cs │ │ ├── JpegConstants.cs │ │ ├── ReadResult.cs │ │ ├── jpeg_common_struct.cs │ │ ├── jpeg_component_info.cs │ │ ├── jpeg_compress_struct.cs │ │ ├── jpeg_decompress_struct.cs │ │ ├── jpeg_destination_mgr.cs │ │ ├── jpeg_error_mgr.cs │ │ ├── jpeg_marker_struct.cs │ │ ├── jpeg_progress_mgr.cs │ │ ├── jpeg_source_mgr.cs │ │ └── jvirt_array.cs │ ├── CompressionParameters.cs │ ├── DecompressionParameters.cs │ ├── DecompressorToJpegImage.cs │ ├── Enumerations.cs │ ├── Help.shfbproj │ ├── Help │ │ ├── Buffered-image mode.aml │ │ ├── Compression details.aml │ │ ├── Compression parameter selection.aml │ │ ├── Content Layout.content │ │ ├── Data formats.aml │ │ ├── Decompression details.aml │ │ ├── Decompression parameter selection.aml │ │ ├── Error handling.aml │ │ ├── Images │ │ │ └── ProgressMonitoring.png │ │ ├── Knowledge Base.aml │ │ ├── License and Copyright.aml │ │ ├── Mechanics of usage.aml │ │ ├── Outline of typical usage.aml │ │ ├── Progress monitoring.aml │ │ ├── Progressive JPEG support.aml │ │ ├── Special color spaces.aml │ │ ├── Special markers.aml │ │ ├── Version History.aml │ │ └── Welcome.aml │ ├── IDecompressDestination.cs │ ├── IRawImage.cs │ ├── Jpeg.cs │ ├── JpegImage.cs │ ├── LibJpeg.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RawImage.cs │ ├── SampleRow.cs │ └── Utils.cs ├── ImgCodec.Png │ ├── GrayscaleReader.cs │ ├── IColorReader.cs │ ├── ImgCodec.Png.csproj │ ├── Ionic.Zlib │ │ ├── CRC32.cs │ │ ├── Deflate.cs │ │ ├── DeflateStream.cs │ │ ├── GZipStream.cs │ │ ├── InfTree.cs │ │ ├── Inflate.cs │ │ ├── ParallelDeflateOutputStream.cs │ │ ├── Tree.cs │ │ ├── Zlib.cs │ │ ├── ZlibBaseStream.cs │ │ ├── ZlibCodec.cs │ │ ├── ZlibConstants.cs │ │ └── ZlibStream.cs │ ├── MyCrc32.cs │ ├── PaletteIndexReader.cs │ ├── PngChunk.cs │ ├── PngColorTypeInformation.cs │ ├── PngDecoder.cs │ ├── PngEncoder.cs │ ├── PngHeader.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TruecolorReader.cs ├── ImgCodec.PngCs │ ├── ImgCodec.PngCs │ │ ├── BufferedStreamReader.cs │ │ ├── ChunkReader.cs │ │ ├── ChunkReaderMode.cs │ │ ├── Chunks │ │ │ ├── ChunkCopyBehaviour.cs │ │ │ ├── ChunkHelper.cs │ │ │ ├── ChunkLoadBehaviour.cs │ │ │ ├── ChunkPredicate.cs │ │ │ ├── ChunkPredicateEquiv.cs │ │ │ ├── ChunkPredicateId.cs │ │ │ ├── ChunkPredicateId2.cs │ │ │ ├── ChunkRaw.cs │ │ │ ├── ChunksList.cs │ │ │ ├── ChunksListForWrite.cs │ │ │ ├── PngChunk.cs │ │ │ ├── PngChunkBKGD.cs │ │ │ ├── PngChunkCHRM.cs │ │ │ ├── PngChunkGAMA.cs │ │ │ ├── PngChunkHIST.cs │ │ │ ├── PngChunkICCP.cs │ │ │ ├── PngChunkIDAT.cs │ │ │ ├── PngChunkIEND.cs │ │ │ ├── PngChunkIHDR.cs │ │ │ ├── PngChunkITXT.cs │ │ │ ├── PngChunkMultiple.cs │ │ │ ├── PngChunkOFFS.cs │ │ │ ├── PngChunkPHYS.cs │ │ │ ├── PngChunkPLTE.cs │ │ │ ├── PngChunkSBIT.cs │ │ │ ├── PngChunkSPLT.cs │ │ │ ├── PngChunkSRGB.cs │ │ │ ├── PngChunkSTER.cs │ │ │ ├── PngChunkSingle.cs │ │ │ ├── PngChunkSkipped.cs │ │ │ ├── PngChunkTEXT.cs │ │ │ ├── PngChunkTIME.cs │ │ │ ├── PngChunkTRNS.cs │ │ │ ├── PngChunkTextVar.cs │ │ │ ├── PngChunkUNKNOWN.cs │ │ │ ├── PngChunkZTXT.cs │ │ │ └── PngMetadata.cs │ │ ├── FileHelper.cs │ │ ├── FilterType.cs │ │ ├── FilterWriteStrategy.cs │ │ ├── IBytesConsumer.cs │ │ ├── ImageInfo.cs │ │ ├── ImageLine.cs │ │ ├── ImageLineHelper.cs │ │ ├── ImageLines.cs │ │ ├── ImgCodec.PngCs.csproj │ │ ├── PngCsUtils.cs │ │ ├── PngDeinterlacer.cs │ │ ├── PngHelperInternal.cs │ │ ├── PngIDatChunkInputStream.cs │ │ ├── PngIDatChunkOutputStream.cs │ │ ├── PngReader.cs │ │ ├── PngWriter.cs │ │ ├── Pngcs.xml │ │ ├── PngjBadCrcException.cs │ │ ├── PngjException.cs │ │ ├── PngjExceptionInternal.cs │ │ ├── PngjInputException.cs │ │ ├── PngjOutputException.cs │ │ ├── PngjUnsupportedException.cs │ │ ├── ProgressiveOutputStream.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Zlib │ │ │ ├── AZlibInputStream.cs │ │ │ ├── AZlibOutputStream.cs │ │ │ ├── Adler32.cs │ │ │ ├── CRC32.cs │ │ │ ├── DeflateCompressLevel.cs │ │ │ ├── EDeflateCompressStrategy.cs │ │ │ ├── ZlibInputStreamIs.cs │ │ │ ├── ZlibInputStreamMs.cs │ │ │ ├── ZlibOutputStreamIs.cs │ │ │ ├── ZlibOutputStreamMs.cs │ │ │ └── ZlibStreamFactory.cs │ ├── LICENSE.txt │ ├── SamplesTests │ │ ├── App.config │ │ ├── MainProgram.cs │ │ ├── NullOutputStream.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SampleConvertToTrueCol.cs │ │ ├── SampleCreateOrange.cs │ │ ├── SampleCustomChunk.cs │ │ ├── SampleDecreaseRed.cs │ │ ├── SampleMirrorImage.cs │ │ ├── SampleShowChunks.cs │ │ ├── SampleTileImage.cs │ │ ├── SamplesTests.csproj │ │ ├── TestPngSuite.cs │ │ ├── TestTextChunks.cs │ │ ├── TestZlib.cs │ │ └── TestsHelper.cs │ ├── changes.txt │ ├── pngcs.sln │ └── readme.txt ├── LayoutFarm.YourBasicCustomWidgets │ ├── LayoutFarm.YourBasicCustomWidgets.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LayoutFarm.YourBasicCustomWidgets_SH │ ├── 0_CustomRenderElements │ │ ├── CustomImageRenderBox.cs │ │ ├── CustomLineBox.cs │ │ ├── CustomRenderBoxSpec.cs │ │ ├── CustomRenderElements.cs │ │ ├── CustomTextRun.cs │ │ └── RenderElementExtension.cs │ ├── 1_UIElement │ │ ├── 1_UIElement.cs │ │ ├── 2_UIElement_EventListener.cs │ │ ├── 3_AbstractRect.cs │ │ ├── 4_UICollection.cs │ │ ├── 5_IScrollable.cs │ │ ├── ElementBehaviors.cs │ │ ├── UIDragHitCollection.cs │ │ └── UIVisitor.cs │ ├── 2_Basic │ │ ├── 0_AbstractBox.cs │ │ ├── 1_ImageBox.cs │ │ ├── 2_TextBox.cs │ │ ├── 3_Box.cs │ │ ├── 3_IContainerUI.cs │ │ ├── 4_Label.cs │ │ └── 5_TextFlowLabel.cs │ ├── 3_Grid │ │ ├── 2_GridLayer.cs │ │ ├── 3_GridTable.cs │ │ └── 5_GridBox.cs │ ├── 4.1_Composites │ │ ├── CheckBox.cs │ │ ├── ComboBox.cs │ │ ├── HingeRelation.cs │ │ ├── ListBox.cs │ │ ├── Menu.cs │ │ ├── ScrollBar.cs │ │ ├── TextBoxContainer.cs │ │ └── TreeView.cs │ ├── 6_InternalResourceMx │ │ ├── x_TestAtlas1_Atlas_AUTOGEN.cs │ │ └── x_TestAtlas1_Atlas_AUTOGEN_BINDERS.cs │ ├── 7_WindowUI │ │ └── UIFloatWindow.cs │ ├── 8.2_Canvas │ │ ├── MiniAggCanvasBox.cs │ │ └── MiniAggCanvasRenderElement.cs │ ├── 9_TextContentSplitter │ │ └── ContentTextSplitter.cs │ ├── LayoutFarm.YourBasicCustomWidgets_SH.projitems │ └── LayoutFarm.YourBasicCustomWidgets_SH.shproj ├── PaintLab.AbstractPlatform │ ├── CanvasViewport.cs │ ├── PaintLab.AbstractPlatform.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TempContext.cs ├── PaintLab.AppHost │ ├── App.cs │ ├── AppHost.cs │ ├── AppHostExtensions.cs │ ├── DemoNote.cs │ ├── MyTextBreaker.cs │ ├── PaintLab.AppHost.projitems │ ├── PaintLab.AppHost.shproj │ ├── RelativePathBuilder.cs │ └── SmartApp.cs ├── PaintLab.BitmapBufferEx │ ├── .gitignore │ ├── BitmapBufferEx │ │ ├── 00_Porting │ │ │ ├── NativeMethods.cs │ │ │ └── PORTING_NOTMERGE.cs │ │ ├── BitmapBuffer.cs │ │ ├── BitmapBufferExtensions │ │ │ ├── AntialiasingExtensions.cs │ │ │ ├── BaseExtensions.cs │ │ │ ├── BlitExtensions.cs │ │ │ ├── ConvertExtensions.cs │ │ │ ├── FillExtensions.cs │ │ │ ├── FilterExtensions.cs │ │ │ ├── LineAaExtensions.cs │ │ │ ├── LineExtensions.cs │ │ │ ├── ShapeExtensionAA.cs │ │ │ ├── ShapeExtensions.cs │ │ │ ├── SplineExtensions.cs │ │ │ └── TransformationExtensions.cs │ │ ├── BitmapBufferFactory.cs │ │ ├── BitmapContext.cs │ │ ├── PaintLab.BitmapBufferEx.csproj │ │ ├── PaintLab.BitmapBufferEx_TESTUNIT.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── LICENSE │ └── README.md ├── PaintLab.Color │ ├── ChromaJs │ │ └── Chroma.cs │ ├── ColorBlender │ │ ├── Algorithms │ │ │ ├── Analogue.cs │ │ │ ├── ClassicBlend.cs │ │ │ ├── ColorExplorer.cs │ │ │ ├── Complementary.cs │ │ │ ├── SingleHue.cs │ │ │ ├── SplitComplementary.cs │ │ │ ├── Square.cs │ │ │ └── Triadic.cs │ │ ├── Blend.cs │ │ ├── ColorMatch.cs │ │ ├── HSV.cs │ │ ├── IAlgorithm.cs │ │ ├── MathHelpers.cs │ │ └── RGB.cs │ ├── ColorToolExtensions.cs │ ├── Colorful_SH │ │ ├── Colorful_SH.projitems │ │ ├── Colorful_SH.shproj │ │ ├── Colors │ │ │ ├── HunterLabColor.cs │ │ │ ├── IColorVector.cs │ │ │ ├── IRGBWorkingSpace.cs │ │ │ ├── Illuminants.cs │ │ │ ├── LChabColor.cs │ │ │ ├── LChuvColor.cs │ │ │ ├── LMSColor.cs │ │ │ ├── LabColor.cs │ │ │ ├── LinearRGBColor.cs │ │ │ ├── LuvColor.cs │ │ │ ├── MacbethColorChecker.cs │ │ │ ├── RGBColor.cs │ │ │ ├── RGBWorkingSpaces.cs │ │ │ ├── XYZColor.cs │ │ │ ├── xyChromaticityCoordinates.cs │ │ │ └── xyYColor.cs │ │ ├── Conversion │ │ │ ├── ColourfulConverter.Adapt.cs │ │ │ ├── ColourfulConverter.ToHunterLab.cs │ │ │ ├── ColourfulConverter.ToLChab.cs │ │ │ ├── ColourfulConverter.ToLChuv.cs │ │ │ ├── ColourfulConverter.ToLMS.cs │ │ │ ├── ColourfulConverter.ToLab.cs │ │ │ ├── ColourfulConverter.ToLinearRGB.cs │ │ │ ├── ColourfulConverter.ToLuv.cs │ │ │ ├── ColourfulConverter.ToRGB.cs │ │ │ ├── ColourfulConverter.ToXYZ.cs │ │ │ ├── ColourfulConverter.ToxyY.cs │ │ │ ├── ColourfulConverter.cs │ │ │ ├── IChromaticAdaptation.cs │ │ │ └── VonKriesChromaticAdaptation.cs │ │ ├── Difference │ │ │ ├── CIE76ColorDifference.cs │ │ │ ├── CIE94ColorDifference.cs │ │ │ ├── CIEDE2000ColorDifference.cs │ │ │ ├── CMCColorDifference.cs │ │ │ └── IColorDifference.cs │ │ ├── Implementation │ │ │ ├── Conversion │ │ │ │ ├── CIEConstants.cs │ │ │ │ ├── HunterLab │ │ │ │ │ ├── HunterLabToXYZConverter.cs │ │ │ │ │ ├── XYZAndHunterLabConverterBase.cs │ │ │ │ │ └── XYZToHunterLabConverter.cs │ │ │ │ ├── IColorConversion.cs │ │ │ │ ├── LChab │ │ │ │ │ ├── LChabToLabConverter.cs │ │ │ │ │ └── LabToLChabConverter.cs │ │ │ │ ├── LChuv │ │ │ │ │ ├── LChuvToLuvConverter.cs │ │ │ │ │ └── LuvToLChuvConverter.cs │ │ │ │ ├── LMS │ │ │ │ │ ├── LMSTransformationMatrix.cs │ │ │ │ │ └── XYZAndLMSConverter.cs │ │ │ │ ├── Lab │ │ │ │ │ ├── LabToXYZConverter.cs │ │ │ │ │ └── XYZToLabConverter.cs │ │ │ │ ├── Luv │ │ │ │ │ ├── LuvToXYZConverter.cs │ │ │ │ │ └── XYZToLuvConverter.cs │ │ │ │ ├── RGB │ │ │ │ │ ├── LinearRGBAndXYZConverterBase.cs │ │ │ │ │ ├── LinearRGBToRGBConverter.cs │ │ │ │ │ ├── LinearRGBToXYZConverter.cs │ │ │ │ │ ├── RGBToLinearRGBConverter.cs │ │ │ │ │ └── XYZToLinearRGBConverter.cs │ │ │ │ └── xyY │ │ │ │ │ └── xyYAndXYZConverter.cs │ │ │ ├── RGB │ │ │ │ ├── GammaCompanding.cs │ │ │ │ ├── ICompanding.cs │ │ │ │ ├── LCompanding.cs │ │ │ │ ├── RGBPrimariesChromaticityCoordinates.cs │ │ │ │ ├── RGBWorkingSpace.cs │ │ │ │ ├── Rec2020Companding.cs │ │ │ │ ├── Rec709Companding.cs │ │ │ │ └── sRGBCompanding.cs │ │ │ └── Utils │ │ │ │ ├── Angle.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── MathUtils.cs │ │ │ │ └── MatrixFactory.cs │ │ ├── LICENSE │ │ ├── NET20Impl.cs │ │ ├── ORG_README.md │ │ └── Other │ │ │ ├── CCTConverter.cs │ │ │ └── SaturationLChFormulas.cs │ ├── KnownColors.cs │ └── PaintLab.Color.csproj ├── PaintLab.CssBase │ ├── CssBase │ │ ├── CssConstants.cs │ │ ├── CssLength.cs │ │ ├── CssProps.cs │ │ ├── CssUnitOrNames.cs │ │ └── MapAttribute.cs │ ├── PaintLab.CssBase.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.PaintFx │ ├── BrightnesssAndContrast.cs │ ├── IImageFilterFunc.cs │ ├── ImgFilters.cs │ ├── InternalBrightnessAndContrastAdjustment.cs │ ├── PaintLab.PaintFx.MiniAgg.csproj │ ├── PaintLab.PaintFx.csproj │ ├── PatternFilterBilnearColorRGBA.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RecursiveBlur.cs │ ├── SharpenFilter.cs │ ├── StackBlur.cs │ └── Transposer.cs ├── PaintLab.PlatformBridge │ ├── Common │ │ ├── Clipboard.cs │ │ ├── ExtensionAttribute.cs │ │ ├── GeneralEventListener.cs │ │ ├── IPlatformWindowBox.cs │ │ ├── Keys.cs │ │ ├── UIPlatform.cs │ │ └── UITimerTask.cs │ ├── Events │ │ ├── IEventListener.cs │ │ ├── IEventPortal.cs │ │ ├── ITopWindowEventRoot.cs │ │ ├── ScrollSurfaceRequestEventArgs.cs │ │ ├── UIEventArgs.cs │ │ └── UIEventNames.cs │ ├── PaintLab.PlatformBridge.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.Platforms.Glfw │ ├── GlfwEventBridge.cs │ ├── GlfwPlatform.cs │ ├── PaintLab.Platforms.Glfw.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.Platforms.SH │ ├── 3_MyTopWindowBridgeOpenGL.cs │ ├── AbstractTopWindowBridge.cs │ ├── AbstractTopWindowBridge_dbug.cs │ ├── GLESInit.cs │ ├── GraphicsViewRoot.cs │ ├── IGpuSurfaceViewport.cs │ ├── InnerViewportKind.cs │ ├── OpenGLCanvasViewport.cs │ ├── PaintLab.Platforms.SH.projitems │ ├── PaintLab.Platforms.SH.shproj │ └── dbugHelper.cs ├── PaintLab.Platforms.Win32 │ ├── 0_Platform │ │ └── FrameworkInitWinGDI.cs │ ├── 1_GraphicsViewAndBridges │ │ ├── GLControlFactory.cs │ │ ├── GLESContext.cs │ │ ├── IGLControl.cs │ │ └── WinGLControl.cs │ ├── 4_GdiPlus │ │ ├── 1_GdiPlusCanvasViewport.cs │ │ ├── 3_MyTopWindowBridgeGdiPlus.cs │ │ └── Conv.cs │ ├── PaintLab.Platforms.Win32.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── PaintLab.Platforms.WinNeutral.NetStd │ └── PaintLab.Platforms.WinNeutral.NetStd.csproj ├── PaintLab.Platforms.WinNeutral │ ├── 0_Platform │ │ └── UIPlatformWinNeutral.cs │ ├── 0_UISurfaceViewport │ │ └── UISurfaceViewportControl.cs │ ├── 1_Bridge_WinNeutral │ │ ├── TopWindowBridgeWinNeutral.cs │ │ └── TopWindowBridgeWinNeutral_dbug.cs │ ├── 1_LayoutFarm.UI │ │ └── AbstractCompletionWindow.cs │ ├── 2_GLES2 │ │ ├── 3_MyTopWindowBridgeOpenGL.cs │ │ ├── GpuGLESViewport.cs │ │ └── MyGLControl.cs │ ├── PaintLab.Platforms.WinNeutral.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.RenderTree.TextSurface │ ├── 1.0_Common │ │ ├── DoubleBufferCustomRenderBox.cs │ │ ├── PlainTextDocumentHelper.cs │ │ └── StringBuilderPool.cs │ ├── 1.1_Runs │ │ ├── CharLocation.cs │ │ ├── Run.cs │ │ ├── RunStyle.cs │ │ ├── SolidRun.cs │ │ ├── TextRun.cs │ │ ├── TextSpanStyle.cs │ │ ├── VisualMarkers.cs │ │ ├── VisualPointInfo.cs │ │ └── VisualSelectionRanges.cs │ ├── 1.2_Lines │ │ ├── 0_TextLine.cs │ │ ├── 1_TextLine_CORE_Collection.cs │ │ ├── 2_TextLine_PRIVATE_CollectionFeatures2.cs │ │ ├── 3_TextLine_PUBLIC_CollectionFeatures.cs │ │ ├── 4_TextLine_ArrangeAndResizingMechanism.cs │ │ ├── 5_TextLine_Advanced.cs │ │ ├── TextLineWalker.cs │ │ ├── TextRangeCopy.cs │ │ └── debugActivityRecorder.cs │ ├── 1.3_Layer │ │ ├── ITextFlowOwner.cs │ │ ├── RunVisitor.cs │ │ └── TextFlowLayer.cs │ ├── 2.1_MultiLineController │ │ ├── DocumentActions.cs │ │ ├── TextFlowEditSession.cs │ │ ├── TextFlowSelectSession.cs │ │ └── TextSurfaceEventListener.cs │ ├── 2.2_TextRenderBox │ │ ├── EditorCaret.cs │ │ ├── GlobalCaretController.cs │ │ ├── TextEditRenderBox.cs │ │ └── TextFlowRenderBox.cs │ ├── PaintLab.RenderTree.TextSurface.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.RenderTree │ ├── 1_Root │ │ ├── 1_RootGraphic.cs │ │ ├── 1_RootGraphic_p1_dbug.cs │ │ ├── 1_RootGraphic_p2_dbug.cs │ │ ├── 2_RenderRequest.cs │ │ ├── 3_GraphicsTimerTask.cs │ │ ├── 4_InvalidateGfxArgs.cs │ │ └── 5_GfxUpdatePlan.cs │ ├── 2_RenderElement │ │ ├── 0_RenderElement.cs │ │ ├── 1_RenderElement.ElementPositioning_NoBoundChanged.cs │ │ ├── 2_RenderElement.ElementPositioning_1_WithSizeChanged.cs │ │ ├── 4_RenderElement.Bubble_Repaint.cs │ │ ├── 5_RenderElementCollection.cs │ │ ├── RenderElementConst.cs │ │ ├── RenderElement_IParentLink.cs │ │ ├── x_RenderElement.debug.cs │ │ └── x_RenderElement_LocationHelper.cs │ ├── 4_Boxes │ │ ├── IBoxElement.cs │ │ └── RenderBoxBase.cs │ ├── 5_HitTest │ │ └── HitChain.cs │ ├── 6_debug │ │ ├── IdbugOutputWindow.cs │ │ ├── dbug.cs │ │ ├── dbugCoreConst.cs │ │ ├── dbugHitTracker.cs │ │ ├── dbugVisitorMessage.cs │ │ ├── dbugVisualEvalScrollBarTrace.cs │ │ ├── dbugVisualInvalidationTracer.cs │ │ └── dbugVisualLayoutTracer.cs │ ├── 8_EventQueue │ │ └── EventQueueSystem.cs │ ├── PaintLab.RenderTree.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.Svg.One │ ├── PaintLab.Svg.One.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.Svg │ ├── PaintLab.Svg.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Visuals │ │ ├── MyVgPathDataParser.cs │ │ ├── VgDocBuilder.cs │ │ ├── VgDocument.cs │ │ ├── VgElemCreators.cs │ │ ├── VgHitChain.cs │ │ ├── VgPaintArgs.cs │ │ ├── VgResourceIO.cs │ │ ├── VgVisitors.cs │ │ ├── VgVisualDoc.cs │ │ ├── VgVisualDocBuilder.cs │ │ ├── VgVisualDocHost.cs │ │ └── VgVisualElements.cs ├── PaintLab.WebDom │ ├── 1_Css │ │ ├── CssActiveSheet.cs │ │ ├── CssAttributeSelector.cs │ │ ├── CssCodeValueExpressions.cs │ │ ├── CssDocMembers.cs │ │ ├── CssDocument.cs │ │ ├── CssElementSelectors.cs │ │ ├── CssPropertyDeclaration.cs │ │ ├── UserMapUtil.cs │ │ ├── ValueMaps.cs │ │ └── WellknownCssPropertyName.cs │ ├── 1_Css_Parser │ │ ├── CssParser.cs │ │ ├── CssParserHelper.cs │ │ └── CssValueParser.cs │ ├── 2_Svg │ │ ├── SvgElements.cs │ │ ├── SvgParser.cs │ │ ├── SvgPathDataParser.cs │ │ ├── SvgSpec.cs │ │ └── SvgTransformation.cs │ ├── IScriptable │ │ └── JsScriptAttributes.cs │ ├── PaintLab.WebDom.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PaintLab.WebLexer │ ├── CssLexer.cs │ ├── MyXmlLexer.cs │ ├── PaintLab.WebLexer.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TextSnapshot.cs │ ├── XmlLexer.cs │ ├── XmlLexer_debug.cs │ └── dbugLexerReport.cs ├── PaintLab.YourImplementation │ ├── 0_FrameworkInit │ │ ├── CommonTextServiceSetup.cs │ │ ├── FrameworkInitGLES.cs │ │ ├── ImgCodecMemBitmapIO.cs │ │ └── StorageProviderImpl.cs │ ├── 1_Events │ │ ├── GraphicsTimerTasksManager.cs │ │ ├── MyIntervalTaskEventArgs.cs │ │ ├── RenderElementEventPortal.cs │ │ ├── TopWindowEventRoot.cs │ │ └── UIHoverMonitor.cs │ ├── 2_ContentManagers │ │ ├── ImageCacheSystem.cs │ │ ├── ImageContentManager.cs │ │ └── TextContentManager.cs │ ├── 3_RenderTreeRoot │ │ ├── 0_MyRootGraphic.cs │ │ └── TopWindowRenderBox.cs │ ├── PaintLab.YourImplementation.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.BasicVisualElements │ ├── PixelFarm.BasicVisualElements.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.BasicVisualElements_SH │ ├── AffineMat.cs │ ├── BasicGeometries.cs │ ├── BitmapBufferFormat.cs │ ├── ClipLiangBarsky.cs │ ├── Color.cs │ ├── ExtensionAttribute.cs │ ├── ICoordTransformer.cs │ ├── Image.cs │ ├── PixelFarm.BasicVisualElements_SH.projitems │ ├── PixelFarm.BasicVisualElements_SH.shproj │ ├── Q1Rect.cs │ ├── Rectangle.cs │ └── RectangleF.cs ├── PixelFarm.CpuBlit_Layer1 │ ├── 02_Rasterization │ │ ├── 0_ScanlineSpan.cs │ │ ├── 1_Scanline.cs │ │ ├── 2_ScanlinePacked8.cs │ │ ├── 3_ScanlineUnpacked8.cs │ │ ├── 4.1_ScanlineRasterizer.cs │ │ ├── 4.2_CellAARasterizer.cs │ │ ├── 4.3_VectorClipper.cs │ │ ├── 5_DestBitmapRasterizer.cs │ │ └── SubPixConst.cs │ ├── 04_FragmentProcessing │ │ ├── 0_ISpanGenerator.cs │ │ └── IGammaFunction.cs │ ├── 05_PixelProcessing │ │ ├── BitmapBlenderBase.cs │ │ ├── IBitmapBlender.cs │ │ ├── PixelBlender32.cs │ │ └── PixelBlenderBGRA.cs │ ├── PixelFarm.CpuBlit_Layer1_SH.projitems │ └── PixelFarm.CpuBlit_Layer1_SH.shproj ├── PixelFarm.CpuBlit_Layer2 │ ├── 03_Rasterization_Lines │ │ ├── 1.1_LinesAA.cs │ │ ├── 1.2_PatternFilter.cs │ │ ├── 1.3_LineParameters.cs │ │ ├── 2.1_DistanceInterpolators.cs │ │ ├── 2.2_LineInterpolators.cs │ │ ├── 2.3_EllipseBrensenhemInterpolator.cs │ │ ├── 3.1_LineRenderer.cs │ │ ├── 3.2_OutlineRenderer.cs │ │ ├── 3.3_ImageLineRenderer.cs │ │ └── 4_OutlineAARasterizer.cs │ ├── 04_FragmentProcessing │ │ ├── 1_ImgSpanGen.cs │ │ ├── 3_ImgSpanGenRGBA.cs │ │ ├── GammaLookUpTable.cs │ │ ├── ISpanInterpolator.cs │ │ ├── LineInterpolators.cs │ │ ├── SpanInterpolatorLinear.cs │ │ └── SpanInterpolatorPerspectiveLerp.cs │ ├── 04_FragmentProcessing_Gradient │ │ ├── GouraudVerticeBuilder.cs │ │ └── RGBAGouraudSpanGen.cs │ ├── 05_PixelProcessing │ │ ├── MemBitmapBinder.cs │ │ ├── PixelBlenderOthers.cs │ │ └── SubBitmapBlender.cs │ ├── 08_ImageResampling │ │ ├── IImageFilter.cs │ │ ├── ImageFilterLookupTable.cs │ │ ├── ImageFreeTransform.cs │ │ ├── ImageInterpolationQuality.cs │ │ └── ImageTransform.cs │ ├── PixelFarm.CpuBlit_Layer2.projitems │ ├── PixelFarm.CpuBlit_Layer2_SH.shproj │ └── x_backup │ │ ├── 2_ImgSpanGenRGB.txt │ │ ├── 4_ImgSpanGenGray.txt │ │ ├── AggRenderSurface_RenderImages.txt │ │ ├── AlphaMask.txt │ │ ├── AlphaMaskAdaptor.txt │ │ ├── FilterImageSpanGenerator.ImageBufferAccessor.txt │ │ ├── FilterImageSpanGenerator.txt │ │ ├── FilterRGBAImageSpanGen.txt │ │ ├── FilterRGBImageSpanGen.txt │ │ ├── PixelBlenderGray.txt │ │ ├── PixelBlenderRGB.txt │ │ └── ScanlineRasToDestBitmapRendererExtension.txt ├── PixelFarm.Drawing.GLES │ ├── 0_Start │ │ ├── GLES2Platform.cs │ │ └── GLES2PlatformFontMx.cs │ ├── BitmapAtlasPainter │ │ ├── BitmapAtlasPainter.cs │ │ └── MySimpleGLBitmapAtlasManager.cs │ ├── DrawBoard │ │ ├── 1_MyGLDrawBoard_Specific.cs │ │ ├── 2_MyGLDrawBoard_CoordinateAndClip.cs │ │ ├── 3_MyGLDrawBoard_DrawGraphics.cs │ │ └── 4_MyGLDrawBoard_TextAndFonts.cs │ ├── GLPainter │ │ ├── GLPainter.cs │ │ ├── GLPainter_BrushAndFill.cs │ │ ├── GLPainter_Imgs.cs │ │ ├── GLPainter_MaskAndClipping.cs │ │ ├── GLPainter_PenAndStroke.cs │ │ └── GLPainter_TextAndFont.cs │ ├── PixelFarm.Drawing.GLES.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TextPrinter │ │ ├── GLBitmapGlyphTextPrinter.cs │ │ ├── GLRenderVxFormattedString.cs │ │ ├── MySimpleGLBitmapFontManager.cs │ │ └── WordPlateAndWordPlateMx.cs ├── PixelFarm.Drawing.GdiPlus │ ├── PixelFarm.Drawing.GdiPlus.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Resources │ │ └── myft.dll ├── PixelFarm.Drawing.GdiPlus_SH │ ├── 0_Start │ │ └── WinGdiPlusPlatform.cs │ ├── DrawBoard │ │ ├── 1_GdiPlusDrawBoard_Specific.cs │ │ ├── 2_GdiPlusDrawBoard_CoordinateAndClip.cs │ │ ├── 3_GdiPlusDrawBoard_DrawGraphics.cs │ │ ├── 4_GdiPlusDrawBoard_TextAndFonts.cs │ │ └── Conv.cs │ ├── Painter │ │ ├── BitmapHelper.cs │ │ ├── BufferBitmapStore.cs │ │ ├── FontFace.cs │ │ ├── GdiMemBitmapIO.cs │ │ ├── GdiPlusRenderVx.cs │ │ ├── NativeTextWin32.cs │ │ └── VxsHelper.cs │ ├── PixelFarm.Drawing.GdiPlus_SH.projitems │ ├── PixelFarm.Drawing.GdiPlus_SH.shproj │ └── RenderSurface │ │ └── GdiPlusRenderSurface.cs ├── PixelFarm.Drawing │ ├── 1_IO │ │ ├── ImageReaders.cs │ │ └── StorageService.cs │ ├── 2_AggPainter │ │ ├── AggPainter.cs │ │ ├── AggPainter_BrushAndFill.cs │ │ ├── AggPainter_FontAndText.cs │ │ ├── AggPainter_Imgs.cs │ │ ├── AggPainter_MaskAndClipping.cs │ │ ├── AggPainter_PenAndStroke.cs │ │ ├── AggRenderSurface.cs │ │ ├── AggRenderSurface_RenderImages.cs │ │ ├── AggRenderVx.cs │ │ ├── CpuBlitRegion.cs │ │ ├── GradientBrushes.cs │ │ ├── Tools.cs │ │ ├── VertexStoreExtensions2.cs │ │ └── VxsRenderVx.cs │ ├── 3_VertexProcessoring │ │ ├── BorderDouble.cs │ │ ├── Figures.cs │ │ ├── LineDashGenerator.cs │ │ ├── RectBorderHelper.cs │ │ └── dbugVertexSourceIO.cs │ ├── 4_PixelProcessing │ │ ├── ClipProxyImage.cs │ │ ├── GammaFuntions.cs │ │ ├── ICpuBlitImageFilter.cs │ │ └── ProxyImage.cs │ ├── 5_PathReconstruction │ │ ├── BezierCurveReconstruction.cs │ │ ├── BitmapBasedRegion.cs │ │ ├── FloodFill.cs │ │ ├── FloodFillTools.cs │ │ ├── MixedRegion.cs │ │ ├── OutlineTracer.cs │ │ ├── PixelEvaluators.cs │ │ ├── ReconstructedRegionData.cs │ │ └── VxsRegion.cs │ ├── 6_Msdf │ │ ├── BasicElements.cs │ │ ├── EdgeColor.cs │ │ ├── EdgeColoring.cs │ │ ├── EdgeSegment.cs │ │ ├── EquationSolver.cs │ │ ├── Msdf3 │ │ │ ├── ContourCornerAndAnalyzingElems.cs │ │ │ ├── EdgeBmpLut.cs │ │ │ └── MsdfGen3.cs │ │ ├── MsdfGen.cs │ │ └── SignedDistance.cs │ ├── 7_BitmapAtlas │ │ ├── AtlasImageBinder.cs │ │ ├── AtlasItem.cs │ │ ├── AtlasItemSource.cs │ │ ├── BinPacker.cs │ │ ├── BitmapAtlasFile.cs │ │ ├── BitmapAtlasManager.cs │ │ ├── MsdfImageGen.cs │ │ ├── MultiGlyphSizeBitmapAtlasBuilder.cs │ │ ├── SimpleBitmapAtlas.cs │ │ └── SimpleBitmapAtlasBuilder.cs │ ├── PixelFarm.Drawing.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.DrawingCore │ └── PixelFarm.DrawingCore.csproj ├── PixelFarm.DrawingGL_SH │ ├── EsUtils │ │ ├── ES2Utils.cs │ │ ├── ES3Utils.cs │ │ ├── GeometryUtils.cs │ │ └── MiniShaderProgram.cs │ ├── GLShader │ │ ├── ColorFillShaderBase.cs │ │ ├── FilterEffectShaders.cs │ │ ├── GradientShaders.cs │ │ ├── ShaderBase.cs │ │ ├── SignedDistanceFieldShader.cs │ │ ├── SimpleRectTextureShader.cs │ │ ├── SmoothLineShader.cs │ │ └── SolidColorFillShader.cs │ ├── GLTexture │ │ ├── FrameBuffer.cs │ │ └── GLBitmap.cs │ ├── PixelFarm.DrawingGL_SH.projitems │ ├── PixelFarm.DrawingGL_SH.shproj │ └── RenderSuface │ │ ├── GLGradientColorProvider.cs │ │ ├── GLRenderSurface.cs │ │ ├── ImageFillStyle.cs │ │ ├── InternalGraphicsPath.cs │ │ ├── ShaderSharedResource.cs │ │ ├── SmoothMode.cs │ │ ├── VertexBufferObject.cs │ │ └── VertexPositionColor.cs ├── PixelFarm.Painter_Layer1_SH │ ├── AggMathRound.cs │ ├── ArrayList_T.cs │ ├── CO.cs │ ├── FillingRule.cs │ ├── IBitmapSrc.cs │ ├── MemBitmap.cs │ ├── MemMx.cs │ ├── NativeMemMx.cs │ ├── PixelFarm.Painter_Layer1_SH.projitems │ ├── PixelFarm.Painter_Layer1_SH.shproj │ ├── TempMemPtr.cs │ └── VertexStore.cs ├── PixelFarm.Painter_Layer2_SH │ ├── Basic │ │ ├── ColorEx.cs │ │ ├── CombineMode.cs │ │ ├── DashStyle.cs │ │ ├── Region.cs │ │ └── RenderVx.cs │ ├── CpuBlit.VertexProcessing │ │ ├── BoundingRect.cs │ │ ├── CurveFlattener.cs │ │ ├── LineWalker.cs │ │ ├── RoundedRect.cs │ │ ├── SimpleRect.cs │ │ ├── Stroke.cs │ │ ├── StrokeGen.cs │ │ ├── StrokeGenerator.cs │ │ ├── StrokeMath.cs │ │ ├── SvgArcSegment.cs │ │ ├── VectorToolBox.cs │ │ ├── VertexData.cs │ │ ├── VertexHitTester.cs │ │ ├── VertexStoreExtensions.cs │ │ ├── VertexStoreTransformExtensions.cs │ │ └── VxsClipping.cs │ ├── CpuBlit │ │ ├── ColorRGBAf.cs │ │ ├── MemBitmapExt.cs │ │ └── PathWriter.cs │ ├── Drawing.Internal │ │ └── MicroPainter.cs │ ├── Drawing │ │ ├── Brushes_Pens.cs │ │ ├── ClipingTechnique.cs │ │ ├── DrawBoard.cs │ │ ├── ITextPrinter.cs │ │ ├── Painter.cs │ │ └── TextBaseline.cs │ ├── ForNet20.cs │ ├── PixelFarm.Painter_Layer2_SH.projitems │ ├── PixelFarm.Painter_Layer2_SH.shproj │ ├── TempContext.cs │ └── _ESS_LINK_WITH_TY │ │ ├── ImageBinder.cs │ │ ├── LenAndLenUnit.cs │ │ ├── RequestFont.cs │ │ ├── TextBufferSpan.cs │ │ └── TextSpanMeasureResult.cs ├── PixelFarm.Typography │ ├── PixelFarm.Typography.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.Vectors_SH │ ├── 1_VectorMaths │ │ ├── AggMath.cs │ │ ├── AxisAlignedBoundingBox.cs │ │ ├── BezierCurve.cs │ │ ├── BezierCurveCubic.cs │ │ ├── BezierCurveQuadric.cs │ │ ├── MathHelper.cs │ │ ├── Matrix4x4.cs │ │ ├── MyVector2.cs │ │ ├── Quaternion.cs │ │ ├── Ray.cs │ │ ├── Vector2.cs │ │ ├── Vector3.cs │ │ ├── Vector3Float.cs │ │ └── Vector4.cs │ ├── 2_Geometry │ │ ├── Arc.cs │ │ ├── BSpline.cs │ │ ├── BezireCurve.cs │ │ ├── Curves.cs │ │ ├── Ellipse.cs │ │ └── Q1RectD.cs │ ├── 3_Transform │ │ ├── 1_Affine.cs │ │ ├── 2_Bilinear.cs │ │ ├── 3_Perspective.cs │ │ ├── 4_SimulEqGeneral.cs │ │ └── Viewport.cs │ ├── 4_Utils │ │ └── PolygonSimplifier.cs │ ├── 5_Clipper │ │ └── cliper.cs │ ├── PixelFarm.Vectors_SH.projitems │ └── PixelFarm.Vectors_SH.shproj ├── PixelFarm.Vectors_Utils_SH │ ├── 4_Utils │ │ ├── Spline2D.cs │ │ ├── SvgArc.cs │ │ └── TessTool.cs │ ├── 6_Contours │ │ ├── 0_Triangle.cs │ │ ├── 1_Line.cs │ │ ├── 2_CentroidPair.cs │ │ ├── 3_BoneJoint.cs │ │ ├── 4_Bone.cs │ │ ├── 5_CentroidLineAndHub.cs │ │ ├── Contour.cs │ │ ├── ContourBuilder.cs │ │ ├── ContourParts.cs │ │ ├── CurveGen.cs │ │ ├── DynamicOutline.cs │ │ ├── IntermediateOutline.cs │ │ ├── MyMath.cs │ │ ├── OutlineWalker.cs │ │ ├── PartFlattener.cs │ │ └── Vertex.cs │ ├── PixelFarm.Vectors_Utils_SH.projitems │ └── PixelFarm.Vectors_Utils_SH.shproj ├── Typography.One │ ├── ExtensionAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Typography.One.csproj ├── app.config └── x_autogen │ ├── PixelFarm.MiniAgg.One.csproj │ ├── PixelFarm.MiniNetCore.One.csproj │ ├── PixelFarm.One.HtmlRenderer.csproj │ ├── PixelFarm.One.NoGdiPlusNoWinForms.csproj │ ├── PixelFarm.One.OnlyGdiPlus.csproj │ └── PixelFarm.One.csproj ├── README.md ├── Tests ├── Data │ ├── 02.jpg │ ├── 1f30b.svg │ ├── Poem.txt │ ├── SampleImages │ │ ├── basemap01.png │ │ ├── lightmap01.png │ │ ├── plain01.png │ │ └── test001.png │ ├── Shaders │ │ ├── CubeMap_FS.glsl │ │ ├── CubeMap_VS.glsl │ │ ├── JuliaSet_SM2_FS.glsl │ │ ├── JuliaSet_SM3_FS.glsl │ │ ├── JuliaSet_VS.glsl │ │ ├── Parallax_FS.glsl │ │ ├── Parallax_VS.glsl │ │ ├── Picking_FS.glsl │ │ ├── Picking_VS.glsl │ │ ├── Simple_FS.glsl │ │ └── Simple_VS.glsl │ ├── Textures │ │ ├── JuliaColorTable.bmp │ │ ├── Swizzled Textures License.txt │ │ ├── cursor.png │ │ ├── earth-cubemap.dds │ │ ├── logo-dark.jpg │ │ ├── logo.jpg │ │ ├── metal.jpg │ │ ├── swizzled-rock-diffuse-height.dds │ │ ├── swizzled-rock-normal-gloss.dds │ │ ├── tahoma -358105584.info │ │ ├── tahoma -358105584.info.png │ │ ├── tahoma -488129008.info │ │ └── tahoma -488129008.info.png │ ├── a00123.png │ ├── a001_x1_65.png │ ├── a001_xn2_8.png │ ├── a001_xn2_K.png │ ├── a001_xn2_l.png │ ├── a_total.png │ ├── a_total.xml │ ├── glyph_a.png │ ├── imgs │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── arrow_blank.png │ │ ├── arrow_close.png │ │ ├── arrow_open.png │ │ ├── favorites32.png │ │ └── logo-dark.png │ ├── leaves.jpg │ ├── lion.svg │ ├── lion1.png │ ├── lion1_v2.png │ ├── lion1_v2_1.png │ ├── lion1_v2_2.png │ ├── lion1_v2_4.png │ ├── lion1_v2_4_1.png │ ├── lion_1_v3_1.png │ ├── lion_1_v3_2.png │ ├── lion_1_v3_2_1.png │ ├── lion_3_2.png │ ├── logo-dark.jpg │ ├── logo-dark.png │ ├── logo-texture.png │ ├── msdf_197.png │ ├── msdf_48.png │ ├── msdf_49.png │ ├── msdf_50.png │ ├── msdf_51.png │ ├── msdf_52.png │ ├── msdf_53.png │ ├── msdf_54.png │ ├── msdf_55.png │ ├── msdf_56.png │ ├── msdf_57.png │ ├── msdf_65.png │ ├── msdf_66.png │ ├── msdf_67.png │ ├── msdf_68.png │ ├── msdf_69.png │ ├── msdf_70.png │ ├── msdf_71.png │ ├── msdf_72.png │ ├── msdf_73.png │ ├── msdf_74.png │ ├── msdf_75.png │ ├── msdf_76.png │ ├── msdf_77.png │ ├── msdf_78.png │ ├── msdf_79.png │ ├── msdf_80.png │ ├── msdf_81.png │ ├── msdf_82.png │ ├── msdf_83.png │ ├── msdf_84.png │ ├── msdf_85.png │ ├── msdf_86.png │ ├── msdf_87.png │ ├── msdf_88.png │ ├── msdf_89.png │ ├── msdf_90.png │ ├── msdf_subpixel_rendering.png │ ├── plain01.png │ ├── rect01.png │ ├── sdf_48.png │ ├── sdf_49.png │ ├── sdf_50.png │ ├── sdf_51.png │ ├── sdf_52.png │ ├── sdf_53.png │ ├── sdf_54.png │ ├── sdf_55.png │ ├── sdf_56.png │ ├── sdf_57.png │ ├── sdf_65.png │ ├── sdf_66.png │ ├── sdf_67.png │ ├── sdf_68.png │ ├── sdf_69.png │ ├── sdf_70.png │ ├── sdf_71.png │ ├── sdf_72.png │ ├── sdf_73.png │ ├── sdf_74.png │ ├── sdf_75.png │ ├── sdf_76.png │ ├── sdf_77.png │ ├── sdf_78.png │ ├── sdf_79.png │ ├── sdf_80.png │ ├── sdf_81.png │ ├── sdf_82.png │ ├── sdf_83.png │ ├── sdf_84.png │ ├── sdf_85.png │ ├── sdf_86.png │ ├── sdf_87.png │ ├── sdf_88.png │ ├── sdf_89.png │ ├── sdf_90.png │ ├── shape_v.png │ ├── spheres.png │ ├── stars.png │ ├── tahoma -293093872.info │ ├── tahoma -293093872.info.png │ ├── tahoma -358105584.info │ ├── tahoma -358105584.info.png │ ├── tahoma -455623152.info │ ├── tahoma -455623152.info.png │ ├── tahoma -488129008.info │ ├── tahoma -488129008.info.png │ ├── test_glyphs.png │ ├── tiger.svg │ ├── v1_K.png │ ├── v1_M.png │ ├── v1_MK.png │ └── v1_err.png ├── MacSamples │ └── PixelFarm │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-128.png │ │ │ ├── AppIcon-128@2x.png │ │ │ ├── AppIcon-16.png │ │ │ ├── AppIcon-16@2x.png │ │ │ ├── AppIcon-256.png │ │ │ ├── AppIcon-256@2x.png │ │ │ ├── AppIcon-32.png │ │ │ ├── AppIcon-32@2x.png │ │ │ ├── AppIcon-512.png │ │ │ ├── AppIcon-512@2x.png │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── DrawnImageView.cs │ │ ├── Entitlements.plist │ │ ├── GlyphPathBuilder.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── PixelFarm.csproj │ │ ├── ViewController.cs │ │ ├── ViewController.designer.cs │ │ └── tahoma.ttf ├── Marius.Yoga │ ├── Extension.cs │ ├── LICENSE.md │ ├── Marius.Yoga.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Readme.md │ ├── YogaAlign.cs │ ├── YogaArray.cs │ ├── YogaCachedMeasurement.cs │ ├── YogaCollectFlexItemsRowValues.cs │ ├── YogaConfig.cs │ ├── YogaDelegates.cs │ ├── YogaDimension.cs │ ├── YogaDirection.cs │ ├── YogaDisplay.cs │ ├── YogaEdge.cs │ ├── YogaExperimentalFeature.cs │ ├── YogaExtensions.cs │ ├── YogaFlexDirection.cs │ ├── YogaJustify.cs │ ├── YogaLayout.cs │ ├── YogaMath.cs │ ├── YogaMeasureMode.cs │ ├── YogaNode.Layout.cs │ ├── YogaNode.Public.cs │ ├── YogaNode.Spacing.cs │ ├── YogaNode.cs │ ├── YogaNodeType.cs │ ├── YogaOverflow.cs │ ├── YogaPositionType.cs │ ├── YogaPrintOptions.cs │ ├── YogaSize.cs │ ├── YogaStyle.cs │ ├── YogaUnit.cs │ ├── YogaValue.cs │ └── YogaWrap.cs ├── MiniTesselate_Test │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TessListener.cs │ ├── Tesselate_Test.csproj │ ├── TestCase01.cs │ └── packages.config ├── Test0_WinNeutral │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test0_WinNeutral.csproj ├── Test4_MiniAggCanvas │ ├── AggSprite │ │ ├── BasicSprite.cs │ │ ├── LionDataStore.cs │ │ ├── LionSprite.cs │ │ └── SpriteShape.cs │ ├── Demo │ │ └── 1.1_DemoAggCanvas_Lion.cs │ ├── MiniAggCanvasRenderElement │ │ └── MyMiniAggCanvasRenderElement.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SampleViewportExtension.cs │ └── Test4_MiniAggCanvas.csproj ├── TestFoundamentalVectors │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TestFoundamentalVectors.csproj │ ├── Tests │ │ └── TestCases.cs │ └── app.config ├── TestGLES_GLFW │ ├── GLFWProgram2.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TestGLES_GLFW.csproj │ └── app.config ├── TestMobile │ ├── CustomApp01 │ │ ├── CustomApp.cs │ │ ├── CustomApp01.projitems │ │ └── CustomApp01.shproj │ ├── Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DroidSans.ttf │ │ ├── GLView.cs │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ │ └── Main.axml │ │ │ ├── mipmap-hdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── Icon.png │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── SOV_Thanamas.ttf │ │ ├── TestApp01.Droid.csproj │ │ └── packages.config │ ├── TestMobile.sln │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── DroidSans.ttf │ │ ├── Entitlements.plist │ │ ├── GameViewController.cs │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── SOV_Thanamas.ttf │ │ ├── TestApp01.iOS.csproj │ │ ├── ViewController.designer.cs │ │ └── packages.config ├── TestSamples_Painting_Focus │ ├── 00_DemoBase │ │ ├── BasicSprite.cs │ │ ├── DemoBase1.cs │ │ ├── DemoHelper.cs │ │ ├── ES2Utils2.cs │ │ ├── MyTestSprite.cs │ │ ├── SpriteShape.cs │ │ ├── Square.cs │ │ └── dbugVxsDrawPoints.cs │ ├── 3_Samples │ │ ├── 01_DrawSamples │ │ │ ├── DrawSamples01_03.cs │ │ │ ├── DrawSamples04.cs │ │ │ ├── DrawSamples05.cs │ │ │ ├── OpenTypeFont.cs │ │ │ ├── SimplePainterGlyphSample.cs │ │ │ └── SimplePainterSample.cs │ │ ├── 02_AA_Demo │ │ │ ├── AADemo_Test2.cs │ │ │ ├── AADemo_Test3.cs │ │ │ ├── AADemo_Test4_subpix.cs │ │ │ ├── Lines.cs │ │ │ └── StrokeGenSample.cs │ │ ├── 03_LionSamples │ │ │ ├── LionFill.cs │ │ │ ├── LionFillMsdfTest.cs │ │ │ ├── LionOutline.cs │ │ │ └── SvgTiger.cs │ │ ├── 04 │ │ │ ├── 41_BitmapRenderSample.cs │ │ │ ├── CutCopyPaste.cs │ │ │ └── FloodFillDemo.cs │ │ ├── 05_AlphaMask2 │ │ │ ├── FontTextureDemo.cs │ │ │ ├── FontTextureDemo2.cs │ │ │ ├── FontTextureDemo3.cs │ │ │ ├── LionMask3.cs │ │ │ └── MiniAggWithTextPrinterDemo.cs │ │ ├── 06_ComponentRendering │ │ │ └── ComponentRendering.cs │ │ ├── 07_Shading │ │ │ ├── 01_GradientSample.cs │ │ │ └── 02_GouraudSample.cs │ │ ├── 10_Polygons │ │ │ ├── GlyphDebugContourVisualizer.cs │ │ │ ├── GlyphDemo.cs │ │ │ ├── Poly2TriDemo.cs │ │ │ ├── PolygonShopDemo.cs │ │ │ └── RoundRectSample.cs │ │ ├── 20_PolygonClippingSample │ │ │ ├── PolygonClippingDemo.cs │ │ │ ├── PolygonClippingDemo2.cs │ │ │ └── PolygonClippingDemoHelper.cs │ │ ├── 22_CurveReconstructions │ │ │ ├── LionCurveReconstruction.cs │ │ │ └── TriangleReconstructions.cs │ │ ├── 23_ImgFilters │ │ │ ├── FilterFxDemo.cs │ │ │ └── ImgFilters1Demo.cs │ │ └── 24_FlexBox │ │ │ └── FlexBoxDemo.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Sample01 │ │ ├── T42_MiniGLControl_HelloTrinagle.cs │ │ ├── T43_MiniControl_SampleTexture2d.cs │ │ ├── T44_SimpleShader.cs │ │ ├── T45_TextureWrap.cs │ │ ├── T46_StencilOperations.cs │ │ ├── T47_Mipmap2d.cs │ │ ├── T48_MultiTexture.cs │ │ ├── T49_PostSubBuffer.cs │ │ └── T50_SampleTexture2dDemo2.cs │ ├── Sample02 │ │ ├── T51_View2d.cs │ │ ├── T52_HelloTriangle2.cs │ │ ├── T53_Viewport.cs │ │ ├── T54_Lines.cs │ │ └── T55_Line2.cs │ ├── Sample03 │ │ ├── T101_BlankCanvas.cs │ │ ├── T102_1_BasicDraw2.cs │ │ ├── T102_BasicDraw.cs │ │ ├── T105_Stencil.cs │ │ ├── T106_SampleBrushes.cs │ │ ├── T107_1_DrawImages.cs │ │ ├── T107_2_DrawGlyphs.cs │ │ ├── T1081_LionFillBmpToTexture.cs │ │ ├── T108_LionFill.cs │ │ ├── T109_LionFillWithRenderVx.cs │ │ ├── T110_Text.cs │ │ ├── T111_FrameBuffer.cs │ │ ├── T112_FrameBuffer2.cs │ │ ├── T113_FrameBufferWithBlur.cs │ │ ├── T114_FrameBufferWithConvFilterEffect.cs │ │ └── T115_VBO_01.cs │ ├── Sample04 │ │ ├── T401_MsdfTest1.cs │ │ ├── T402_BrushTest2.cs │ │ ├── T403_MsdfGenTest2.cs │ │ ├── T404_FontAtlas.cs │ │ ├── T405_DrawString.cs │ │ ├── T406_GLBitmapAtlasTest.cs │ │ ├── T407_MaskTest.cs │ │ └── T408_MsdfMaskTest.cs │ ├── Shapes │ │ ├── Base │ │ │ ├── DrawableShape.cs │ │ │ └── VertexStructs.cs │ │ ├── Capsule.cs │ │ ├── ChamferCube.cs │ │ ├── Helpers │ │ │ ├── Chunk.cs │ │ │ ├── MengerCube.cs │ │ │ ├── TetrahedronFace.cs │ │ │ └── VboShape.cs │ │ ├── KochTetrahedron.cs │ │ ├── MengerSponge.cs │ │ ├── Old │ │ │ ├── Cube.cs │ │ │ ├── IsoSphere.cs │ │ │ ├── Plane.cs │ │ │ ├── Shape.cs │ │ │ └── SierpinskiTetrahedron.cs │ │ ├── SlicedHose.cs │ │ ├── SlicedSphere.cs │ │ ├── TorusKnot.cs │ │ └── VertexPositionColor.cs │ ├── TestSamples_Painting_Focus.csproj │ └── Utilities │ │ ├── LoaderDDS.cs │ │ ├── LoaderGDI.cs │ │ ├── LoaderStatics.cs │ │ └── Utils.cs ├── TestSamples_RenderTreeFocus │ ├── Demo1.1 │ │ ├── 1.10_Demo_Images.cs │ │ ├── 1.11_DemoLabels.cs │ │ ├── 1.12_SmallAnimation.cs │ │ ├── 1.14_Demo_EasingFuncs.cs │ │ ├── 1.15_Demo_Drag2.cs │ │ └── PennerDoubleAnimation.cs │ ├── Demo1.2 │ │ ├── 1.13_ColorBlender.cs │ │ └── MyCustomColorSet.cs │ ├── Demo1 │ │ ├── 1.1_Demo_SingleButton.cs │ │ ├── 1.2.0_Demo_MultipleBoxes.cs │ │ ├── 1.2.1_MultipleBoxes2.cs │ │ ├── 1.3_Demo_SampleGrid.cs │ │ ├── 1.4_Demo_Drag.cs │ │ ├── 1.5_Demo_ScrollBar.cs │ │ ├── 1.6_Demo_ScrollView.cs │ │ ├── 1.7_Demo_ListBox.cs │ │ ├── 1.8_Demo_Hinge.cs │ │ └── 1.9_Demo_TreeView.cs │ ├── Demo2 │ │ ├── 2.1_Demo_SingleLineTextBox.cs │ │ ├── 2.2_Demo_MultilineTextBox.cs │ │ ├── 2.3_Demo_SingleLineTextBox_WithSuggestion.cs │ │ ├── 2.5_Demo_MultiLineTextBox_WithSugggestion.cs │ │ └── 2.6_Demo_MultiLineText_WithSuggestionPopupWin.cs │ ├── Demo3 │ │ ├── 3.1_Demo_Visible.cs │ │ ├── 3.2_Demo_ControllerBox.cs │ │ ├── 3.3_Demo_ControllerBox2.cs │ │ └── 3.4_CursorTest.cs │ ├── Demo4 │ │ ├── 4.1_Demo_LionSprite.cs │ │ ├── 4.2_DemoSampleCharts.cs │ │ ├── 4.3_Demo_Perspective.cs │ │ └── PxMotion.cs │ ├── Demo5 │ │ └── Boxes_with_Beh.cs │ ├── Demo6 │ │ └── 6_DemoFlexBox.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestSamples_RenderTreeFocus.csproj ├── TestTextFlow │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── LayoutFarm.TestTextFlow.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Win32API.cs │ └── Win32Api2.cs ├── Test_AndroidApp1 │ ├── Assets │ │ └── AboutAssets.txt │ ├── GLView1.cs │ ├── GettingStarted.Xamarin │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ └── Test_AndroidApp1.csproj ├── Test_Android_BasicLion │ ├── Assets │ │ └── AboutAssets.txt │ ├── GLView1.cs │ ├── GettingStarted.Xamarin │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ └── Test_Android_BasicLion.csproj ├── Test_BackEnd_DrawingBuffer │ ├── 01.jpg │ ├── 02.jpg │ ├── BackEnd.BitmapBufferEx.sln │ ├── BlitDemo │ │ ├── FormBlit.Designer.cs │ │ ├── FormBlit.cs │ │ ├── FormBlit.resx │ │ ├── HslColor.cs │ │ ├── Particle.cs │ │ └── ParticleEmitter.cs │ ├── CurveSample │ │ ├── FormPlantDemo.Designer.cs │ │ ├── FormPlantDemo.cs │ │ ├── FormPlantDemo.resx │ │ └── PlantSample.cs │ ├── FlowerBurst.jpg │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── FormFill.Designer.cs │ ├── FormFill.cs │ ├── FormFill.resx │ ├── FormShape.Designer.cs │ ├── FormShape.cs │ ├── FormShape.resx │ ├── GlobalAssemblyInfo.cs │ ├── NativeMethods.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_BackEnd_DrawingBuffer.csproj │ ├── app.config │ └── circle.png ├── Test_CpuBlitCoreRasterizer │ ├── PORT │ │ └── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test_CpuBlitCoreRasterizer.csproj ├── Test_GlyphTess.MiniAggWinForms │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── GdiHelper │ │ └── GdiBitmapIO_ScaleImg.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_GlyphTess.MiniAggWinForms.csproj │ └── app.config ├── Test_MiniAgg_GLES_GLFW_Misc │ ├── MyApp3.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Test_MiniAgg_GLES_GLFW_Misc.csproj ├── Test_MiniAgg_GLES_GLFW_NetCore │ ├── MyApp3.cs │ ├── Program.cs │ └── Test_MiniAgg_GLES_GLFW_NetCore.csproj ├── Test_MiniAgg_GLES_Painting │ ├── 0_Start │ │ ├── CpuBlitAppModule.cs │ │ ├── CpuBlitOnGLESAppModule.cs │ │ ├── GLESAppModule.cs │ │ └── Program.cs │ ├── 8_SkiaTest │ │ ├── FormSkia1.Designer.cs │ │ ├── FormSkia1.cs │ │ ├── FormSkia1.resx │ │ └── SkiaControl │ │ │ ├── SKControl.cs │ │ │ ├── SKGLControl.cs │ │ │ ├── SKGLDrawable.cs │ │ │ ├── SKPaintGLSurfaceEventArgs.cs │ │ │ └── SKPaintSurfaceEventArgs.cs │ ├── ColorCompoBox.Designer.cs │ ├── ColorCompoBox.cs │ ├── ColorCompoBox.resx │ ├── Data │ │ ├── glyph_0.png │ │ ├── glyph_1.png │ │ ├── glyph_10.png │ │ ├── glyph_11.png │ │ ├── glyph_12.png │ │ ├── glyph_13.png │ │ ├── glyph_14.png │ │ ├── glyph_15.png │ │ ├── glyph_16.png │ │ ├── glyph_17.png │ │ ├── glyph_18.png │ │ ├── glyph_19.png │ │ ├── glyph_2.png │ │ ├── glyph_20.png │ │ ├── glyph_21.png │ │ ├── glyph_22.png │ │ ├── glyph_23.png │ │ ├── glyph_24.png │ │ ├── glyph_25.png │ │ ├── glyph_26.png │ │ ├── glyph_27.png │ │ ├── glyph_28.png │ │ ├── glyph_29.png │ │ ├── glyph_3.png │ │ ├── glyph_30.png │ │ ├── glyph_31.png │ │ ├── glyph_32.png │ │ ├── glyph_33.png │ │ ├── glyph_34.png │ │ ├── glyph_35.png │ │ ├── glyph_36.png │ │ ├── glyph_37.png │ │ ├── glyph_38.png │ │ ├── glyph_39.png │ │ ├── glyph_4.png │ │ ├── glyph_40.png │ │ ├── glyph_41.png │ │ ├── glyph_42.png │ │ ├── glyph_43.png │ │ ├── glyph_44.png │ │ ├── glyph_45.png │ │ ├── glyph_46.png │ │ ├── glyph_47.png │ │ ├── glyph_48.png │ │ ├── glyph_49.png │ │ ├── glyph_5.png │ │ ├── glyph_50.png │ │ ├── glyph_6.png │ │ ├── glyph_7.png │ │ ├── glyph_8.png │ │ └── glyph_9.png │ ├── FormDev.Designer.cs │ ├── FormDev.cs │ ├── FormDev.resx │ ├── FormImgResampling.Designer.cs │ ├── FormImgResampling.cs │ ├── FormImgResampling.resx │ ├── FormTestBed.cs │ ├── FormTestBed.designer.cs │ ├── FormTestBed.resx │ ├── FormTestColorBlend.Designer.cs │ ├── FormTestColorBlend.cs │ ├── FormTestColorBlend.resx │ ├── FormTestMsdfGen.Designer.cs │ ├── FormTestMsdfGen.cs │ ├── FormTestMsdfGen.resx │ ├── FormTestPaintFx.Designer.cs │ ├── FormTestPaintFx.cs │ ├── FormTestPaintFx.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Samples │ │ ├── arrow2.svg │ │ ├── lion.svg │ │ ├── lion1.png │ │ ├── tiger002.svg │ │ ├── tiger_whiskers.svg │ │ └── tiger_wrinkles.svg │ ├── Test_MiniAgg_GLES_Painting.csproj │ └── app.config ├── Test_Pdn │ ├── BackEnd.FilterFx.sln │ ├── FORK.TXT │ ├── PdnCore │ │ └── PdnCore.csproj │ ├── README.md │ ├── TestPdnCore │ │ ├── Program.cs │ │ └── TestPdnCore.csproj │ ├── TestPdnEffect │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PdnRotateZoom │ │ │ ├── RollControl.Designer.cs │ │ │ └── RollControl.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── TestPdnEffect.csproj │ └── TestPdnWinForm │ │ ├── FormTestPaintFx.Designer.cs │ │ ├── FormTestPaintFx.cs │ │ ├── FormTestPaintFx.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── TestPdnEffect.csproj ├── Test_RenderTreeFocus │ ├── 0_Start │ │ └── Program.cs │ ├── Data │ │ ├── GoogleMaterialDzColor.txt │ │ └── colorbrewer.txt │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test_RenderTree_Focus.csproj │ └── app.config ├── Test_iOS │ ├── Test_iOS.sln │ └── Test_iOS │ │ ├── Test_iOS.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── Test_iOS.iOS.csproj │ │ └── Test_iOS │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.cs │ │ └── Test_iOS.csproj ├── Test_iOSApp1 │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── GameViewController.cs │ ├── GettingStarted.Xamarin │ ├── Info.plist │ ├── Main.cs │ ├── Main.storyboard │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ └── LaunchScreen.xib │ └── Test_iOSApp1.csproj ├── Test_iOS_BasicLion │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── GameViewController.cs │ ├── GettingStarted.Xamarin │ ├── Info.plist │ ├── Main.cs │ ├── Main.storyboard │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ └── LaunchScreen.xib │ └── Test_iOS_BasicLion.csproj └── WinFormTestBed2 │ ├── TestBedStartup.cs │ ├── WinFormTestBed2.projitems │ ├── WinFormTestBed2.shproj │ └── YourImplementation.WinForms │ ├── AppHostWithRootGfx.cs │ ├── CpuBlitOnGLES.cs │ ├── FormCanvasHelper.cs │ ├── FormDemoList.Designer.cs │ ├── FormDemoList.cs │ ├── FormDemoList.resx │ ├── FormLayoutInspector.Designer.cs │ ├── FormLayoutInspector.cs │ ├── FormLayoutInspector.resx │ ├── FormPrint.Designer.cs │ ├── FormPrint.cs │ ├── FormPrint.resx │ ├── UIPlatformWinForm.cs │ └── UISurfaceViewportSetupHelper.cs ├── Tools ├── BuildMergeProject │ ├── AndroidManifest.xml │ ├── BuildMergeProject.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Xamarin_Droid_Template.xml │ ├── Xamarin_iOS_Template.xml │ └── app.config ├── MergeProjectTool │ ├── FormBuildMergeProject.Designer.cs │ ├── FormBuildMergeProject.cs │ ├── FormBuildMergeProject.resx │ ├── MergeProjectTool.csproj │ ├── MergeProjects.cs │ ├── MergeProjectsToolBox.Designer.cs │ ├── MergeProjectsToolBox.cs │ ├── MergeProjectsToolBox.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── SolutionListViewController.cs ├── PaintLabResTool │ ├── AtlasProject.cs │ ├── Builders.cs │ ├── FontBuilderConfig.cs │ ├── FormBitmapAtlasBuilder.Designer.cs │ ├── FormBitmapAtlasBuilder.cs │ ├── FormBitmapAtlasBuilder.resx │ ├── PaintLabResTool.csproj │ ├── PathUtils.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config └── dlls │ ├── angle │ ├── _x64 │ │ ├── d3dcompiler_47.dll │ │ ├── libEGL.dll │ │ ├── libGLESv2.dll │ │ └── swiftshader │ │ │ ├── libegl.dll │ │ │ └── libglesv2.dll │ └── _x86 │ │ ├── d3dcompiler_47.dll │ │ ├── libegl.dll │ │ ├── libglesv2.dll │ │ └── swiftshader │ │ ├── libegl.dll │ │ └── libglesv2.dll │ ├── glfw3.3 │ └── glfw3.dll │ └── myft.dll ├── global.json ├── x_autogen ├── MiniOpenTK │ └── MiniOpenTK.csproj ├── PixelFarm.Cosmos.One │ └── PixelFarm.Cosmos.One.csproj ├── PixelFarm.Drawing.One │ └── PixelFarm.Drawing.One.csproj ├── PixelFarm.HtmlRender.Windows.One │ └── PixelFarm.HtmlRender.Windows.One.csproj ├── PixelFarm.MiniAgg.One │ └── PixelFarm.MiniAgg.One.csproj └── PixelFarm.One.HtmlRenderer │ └── PixelFarm.One.HtmlRenderer.csproj ├── x_autogen2 ├── PixelFarm.Android.One │ ├── PixelFarm.Android.One.csproj │ ├── PixelFarm │ │ └── Typography │ │ │ └── Typography.OpenFont │ │ │ └── ExtensionAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ └── Values │ │ └── Strings.xml ├── PixelFarm.Cosmos.One │ └── PixelFarm.Cosmos.One.csproj ├── PixelFarm.Drawing.One │ └── PixelFarm.Drawing.One.csproj ├── PixelFarm.HtmlRender.Windows.One │ └── PixelFarm.HtmlRender.Windows.One.csproj ├── PixelFarm.MiniAgg.One │ └── PixelFarm.MiniAgg.One.csproj └── PixelFarm.One.HtmlRenderer │ ├── PixelFarm.One.HtmlRenderer.csproj │ └── PixelFarm.One.HtmlRenderer.sln ├── x_autogen_netstandard1.3 ├── PixelFarm.Cosmos.One │ └── PixelFarm.Cosmos.One.csproj └── PixelFarm.MiniAgg.One │ └── PixelFarm.MiniAgg.One.csproj ├── x_autogen_netstandard2.0 ├── PixelFarm.MiniAgg.One │ └── PixelFarm.MiniAgg.One.csproj └── PixelFarm.One.HtmlRenderer │ └── PixelFarm.One.HtmlRenderer.csproj ├── x_autogen_xamarin_droid └── PixelFarm.One.HtmlRenderer │ ├── AndroidManifest.xml │ ├── PixelFarm.One.HtmlRenderer.csproj │ └── packages.config ├── x_autogen_xamarin_ios └── PixelFarm.One.HtmlRenderer │ ├── Info.plist │ ├── PixelFarm.One.HtmlRenderer.csproj │ ├── PixelFarm.One.HtmlRenderer.sln │ └── packages.config ├── x_merge_projects ├── MiniOpenTK │ ├── MiniOpenTK.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.Cosmos.One │ ├── PixelFarm.Cosmos.One.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.Drawing.One │ ├── PixelFarm.Drawing.One.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.HtmlRender.Windows.One │ ├── PixelFarm.HtmlRender.Windows.One.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.MiniAgg.One │ ├── PixelFarm.MiniAgg.One.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PixelFarm.One.HtmlRenderer │ ├── POST_MERGE.xml │ ├── PixelFarm.One.HtmlRenderer.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── PixelFarm.One.Neutral │ ├── PixelFarm.One.Neutral.csproj │ └── Properties │ └── AssemblyInfo.cs └── x_resource_projects ├── GeneralResources ├── GeneralResources.csproj ├── Properties │ └── AssemblyInfo.cs ├── config.xml ├── test_css01.css ├── test_html01.html └── x_GeneralResources_Resource_AUTOGEN.cs ├── TestAtlas1 ├── Properties │ └── AssemblyInfo.cs ├── TestAtlas1.csproj ├── TestAtlas1.info ├── TestAtlas1.png ├── x_TestAtlas1_Atlas_AUTOGEN.cs └── x_TestAtlas1_Atlas_AUTOGEN_BINDERS.cs └── TestFontAtlas ├── Properties └── AssemblyInfo.cs ├── SourceSansPro-Regular.ttf.xml ├── TestFontAtlas.csproj └── TwitterColorEmoji-SVGinOT.ttf.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /src/MiniDev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/MiniDev.sln -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.BurningMineCurve_SH/CubicBezier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.BurningMineCurve_SH/CubicBezier.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.BurningMineCurve_SH/CurveBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.BurningMineCurve_SH/CurveBuilder.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.BurningMineCurve_SH/CurveFit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.BurningMineCurve_SH/CurveFit.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.BurningMineCurve_SH/CurveFitBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.BurningMineCurve_SH/CurveFitBase.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.BurningMineCurve_SH/Spline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.BurningMineCurve_SH/Spline.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.BurningMineCurve_SH/VectorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.BurningMineCurve_SH/VectorHelper.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.ImgCodecs/BackEnd.ImgCodecs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.ImgCodecs/BackEnd.ImgCodecs.csproj -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/DevOpenTK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/DevOpenTK.sln -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/.gitignore -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Exceptions.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/GameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/GameWindow.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Input/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Input/Key.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Box2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Box2.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Box2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Box2d.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Half.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Point.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Math/Size.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/OpenTK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/OpenTK.csproj -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Toolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/Toolkit.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/WindowIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.MiniOpenTK/src/OpenTK/WindowIcon.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.NativeWindows_SH/GLFW3_binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.NativeWindows_SH/GLFW3_binder.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.NativeWindows_SH/GlfwWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.NativeWindows_SH/GlfwWindow.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/BZip2/BZip2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/BZip2/BZip2.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/BZip2/BZip2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/BZip2/BZip2Constants.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/BZip2/BZip2Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/BZip2/BZip2Exception.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Checksum/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Checksum/Adler32.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Checksum/BZip2Crc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Checksum/BZip2Crc.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Checksum/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Checksum/Crc32.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Checksum/IChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Checksum/IChecksum.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Core/INameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Core/INameTransform.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Core/IScanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Core/IScanFilter.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Core/NameFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Core/NameFilter.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Core/PathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Core/PathFilter.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Core/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Core/StreamUtils.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/GZip/GZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/GZip/GZip.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/GZip/GZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/GZip/GZipConstants.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/GZip/GZipException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/GZip/GZipException.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/GZip/GzipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/GZip/GzipInputStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/LICENSE.txt -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Lzw/LzwConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Lzw/LzwConstants.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Lzw/LzwException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Lzw/LzwException.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Lzw/LzwInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Lzw/LzwInputStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarArchive.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarBuffer.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarEntry.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarException.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarHeader.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarInputStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Tar/TarOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Tar/TarOutputStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/FastZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/FastZip.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/IEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/IEntryFactory.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipConstants.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipEntry.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipEntryFactory.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipException.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipExtraData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipExtraData.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipFile.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipHelperStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipHelperStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipInputStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipNameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipNameTransform.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.SharpZipLib/Zip/ZipOutputStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/ActiveRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/ActiveRegion.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/ContourVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/ContourVertex.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/Dictionary.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/Face.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/HalfEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/HalfEdge.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/MaxFirstList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/MaxFirstList.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/Mesh.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Tesselate_SH/Tesselator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Tesselate_SH/Tesselator.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.TreeCollection/General/ISegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.TreeCollection/General/ISegment.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/.gitignore -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/AUTHORS.txt -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/Delaunay/DTSweep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/Delaunay/DTSweep.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/LICENSE.txt -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/P2T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/P2T.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/Polygon/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/Polygon/Polygon.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/README.txt -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/Sets/PointSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/Sets/PointSet.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Triangulation/Triangulation.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Triangulation/Triangulation.shproj -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Win32Utils/MyWin32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Win32Utils/MyWin32.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Win32Utils/NativeWin32MemoryDc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Win32Utils/NativeWin32MemoryDc.cs -------------------------------------------------------------------------------- /src/PixelFarm/BackEnd.Win32Utils/Win32_NotUsed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/BackEnd.Win32Utils/Win32_NotUsed.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/Color.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ExtendedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ExtendedImage.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ExtraImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ExtraImageInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/FlippingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/FlippingType.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/Helpers/ExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/Helpers/ExtensionAttribute.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/Helpers/ForNet20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/Helpers/ForNet20.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/Helpers/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/Helpers/Guard.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/IO/Decoders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/IO/Decoders.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/IO/Encoders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/IO/Encoders.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/IO/IImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/IO/IImageDecoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/IO/IImageEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/IO/IImageEncoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ImageFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ImageFormatException.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ImageFrameCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ImageFrameCollection.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ImageProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ImageProperty.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ImagePropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ImagePropertyCollection.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ImgCodec.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ImgCodec.Core.csproj -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/ImgExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/ImgExtensionMethods.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/Rectangle.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/RotationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/RotationType.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Core/SimpleImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Core/SimpleImage.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/DisposalMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/DisposalMethod.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/GifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/GifDecoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/GifGraphicsControlExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/GifGraphicsControlExtension.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/GifImageDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/GifImageDescriptor.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/GifLogicalScreenDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/GifLogicalScreenDescriptor.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/ImgCodec.Gif.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/ImgCodec.Gif.csproj -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/LZWDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/LZWDecoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/Properties/Resources.resx -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Gif/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Gif/Properties/Settings.settings -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.IconAndCursor/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.IconAndCursor/Form1.Designer.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.IconAndCursor/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.IconAndCursor/Form1.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.IconAndCursor/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.IconAndCursor/Form1.resx -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.IconAndCursor/IconAndCursorFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.IconAndCursor/IconAndCursorFile.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.IconAndCursor/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.IconAndCursor/LICENSE.txt -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.IconAndCursor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.IconAndCursor/Program.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/DCT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/DCT.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/DecodedJpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/DecodedJpeg.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/FDCT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/FDCT.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/Image.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/JpegMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/JpegMarker.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/YCbCr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/YCbCr.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/ZigZag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/FluxJpeg.Core/ZigZag.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/ImgCodec.Jpeg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/ImgCodec.Jpeg.csproj -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/JpegDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/JpegDecoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/JpegEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/JpegEncoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Jpeg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Jpeg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/BitStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/BitStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/BitmapDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/BitmapDestination.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/DensityUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/DensityUnit.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/JBLOCK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/JBLOCK.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/JHUFF_TBL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/JHUFF_TBL.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/JPEG_MARKER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/JPEG_MARKER.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/JQUANT_TBL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/JQUANT_TBL.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/J_COLOR_SPACE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/J_COLOR_SPACE.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/J_DCT_METHOD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/J_DCT_METHOD.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/J_DITHER_MODE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/J_DITHER_MODE.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/J_MESSAGE_CODE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/J_MESSAGE_CODE.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/JpegConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/JpegConstants.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/ReadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/ReadResult.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/jpeg_error_mgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/jpeg_error_mgr.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/jpeg_source_mgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/jpeg_source_mgr.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Classic/jvirt_array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Classic/jvirt_array.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/CompressionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/CompressionParameters.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/DecompressionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/DecompressionParameters.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/DecompressorToJpegImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/DecompressorToJpegImage.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Enumerations.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help.shfbproj -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help/Data formats.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help/Data formats.aml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help/Error handling.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help/Error handling.aml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help/Knowledge Base.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help/Knowledge Base.aml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help/Special markers.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help/Special markers.aml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help/Version History.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help/Version History.aml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Help/Welcome.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Help/Welcome.aml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/IDecompressDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/IDecompressDestination.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/IRawImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/IRawImage.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Jpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Jpeg.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/JpegImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/JpegImage.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/LibJpeg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/LibJpeg.csproj -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/RawImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/RawImage.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/SampleRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/SampleRow.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.LibJpeg/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.LibJpeg/Utils.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/GrayscaleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/GrayscaleReader.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/IColorReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/IColorReader.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/ImgCodec.Png.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/ImgCodec.Png.csproj -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/CRC32.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Deflate.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/DeflateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/DeflateStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/GZipStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/InfTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/InfTree.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Inflate.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Tree.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/Zlib.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibBaseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibBaseStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibCodec.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibConstants.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Ionic.Zlib/ZlibStream.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/MyCrc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/MyCrc32.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/PaletteIndexReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/PaletteIndexReader.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/PngChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/PngChunk.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/PngColorTypeInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/PngColorTypeInformation.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/PngDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/PngDecoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/PngEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/PngEncoder.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/PngHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/PngHeader.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.Png/TruecolorReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.Png/TruecolorReader.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/FileHelper.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/FilterType.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/ImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/ImageInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/ImageLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/ImageLine.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/ImageLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/ImageLines.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/PngCsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/PngCsUtils.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/PngReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/PngReader.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/PngWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/PngWriter.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/Pngcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/Pngcs.xml -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/Zlib/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/ImgCodec.PngCs/Zlib/CRC32.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/LICENSE.txt -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/SamplesTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/SamplesTests/App.config -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/SamplesTests/MainProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/SamplesTests/MainProgram.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/SamplesTests/TestPngSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/SamplesTests/TestPngSuite.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/SamplesTests/TestZlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/SamplesTests/TestZlib.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/SamplesTests/TestsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/SamplesTests/TestsHelper.cs -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/changes.txt -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/pngcs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/pngcs.sln -------------------------------------------------------------------------------- /src/PixelFarm/ImgCodec.PngCs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/ImgCodec.PngCs/readme.txt -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AbstractPlatform/CanvasViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AbstractPlatform/CanvasViewport.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AbstractPlatform/TempContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AbstractPlatform/TempContext.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/App.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/AppHost.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/AppHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/AppHostExtensions.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/DemoNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/DemoNote.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/MyTextBreaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/MyTextBreaker.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/PaintLab.AppHost.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/PaintLab.AppHost.projitems -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/PaintLab.AppHost.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/PaintLab.AppHost.shproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/RelativePathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/RelativePathBuilder.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.AppHost/SmartApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.AppHost/SmartApp.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.BitmapBufferEx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.BitmapBufferEx/.gitignore -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.BitmapBufferEx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.BitmapBufferEx/LICENSE -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.BitmapBufferEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.BitmapBufferEx/README.md -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ChromaJs/Chroma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ChromaJs/Chroma.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorBlender/Blend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorBlender/Blend.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorBlender/ColorMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorBlender/ColorMatch.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorBlender/HSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorBlender/HSV.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorBlender/IAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorBlender/IAlgorithm.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorBlender/MathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorBlender/MathHelpers.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorBlender/RGB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorBlender/RGB.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/ColorToolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/ColorToolExtensions.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/Colorful_SH/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/Colorful_SH/LICENSE -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/Colorful_SH/NET20Impl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/Colorful_SH/NET20Impl.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/Colorful_SH/ORG_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/Colorful_SH/ORG_README.md -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/KnownColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/KnownColors.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Color/PaintLab.Color.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Color/PaintLab.Color.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/CssBase/CssConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/CssBase/CssConstants.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/CssBase/CssLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/CssBase/CssLength.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/CssBase/CssProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/CssBase/CssProps.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/CssBase/CssUnitOrNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/CssBase/CssUnitOrNames.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/CssBase/MapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/CssBase/MapAttribute.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/PaintLab.CssBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/PaintLab.CssBase.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.CssBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.CssBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/BrightnesssAndContrast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/BrightnesssAndContrast.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/IImageFilterFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/IImageFilterFunc.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/ImgFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/ImgFilters.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/PaintLab.PaintFx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/PaintLab.PaintFx.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/RecursiveBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/RecursiveBlur.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/SharpenFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/SharpenFilter.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/StackBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/StackBlur.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PaintFx/Transposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PaintFx/Transposer.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PlatformBridge/Common/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PlatformBridge/Common/Clipboard.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.PlatformBridge/Common/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.PlatformBridge/Common/Keys.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.Glfw/GlfwEventBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.Glfw/GlfwEventBridge.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.Glfw/GlfwPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.Glfw/GlfwPlatform.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.SH/GLESInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.SH/GLESInit.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.SH/GraphicsViewRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.SH/GraphicsViewRoot.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.SH/InnerViewportKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.SH/InnerViewportKind.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.SH/dbugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.SH/dbugHelper.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.Win32/4_GdiPlus/Conv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.Win32/4_GdiPlus/Conv.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Platforms.Win32/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Platforms.Win32/app.config -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.RenderTree/1_Root/1_RootGraphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.RenderTree/1_Root/1_RootGraphic.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.RenderTree/4_Boxes/IBoxElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.RenderTree/4_Boxes/IBoxElement.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.RenderTree/5_HitTest/HitChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.RenderTree/5_HitTest/HitChain.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.RenderTree/6_debug/dbug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.RenderTree/6_debug/dbug.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg.One/PaintLab.Svg.One.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg.One/PaintLab.Svg.One.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg.One/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg.One/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/PaintLab.Svg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/PaintLab.Svg.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/MyVgPathDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/MyVgPathDataParser.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgDocBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgDocBuilder.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgDocument.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgElemCreators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgElemCreators.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgHitChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgHitChain.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgPaintArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgPaintArgs.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgResourceIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgResourceIO.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgVisitors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgVisitors.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgVisualDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgVisualDoc.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgVisualDocBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgVisualDocBuilder.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgVisualDocHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgVisualDocHost.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.Svg/Visuals/VgVisualElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.Svg/Visuals/VgVisualElements.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/1_Css/CssActiveSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/1_Css/CssActiveSheet.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/1_Css/CssDocMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/1_Css/CssDocMembers.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/1_Css/CssDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/1_Css/CssDocument.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/1_Css/UserMapUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/1_Css/UserMapUtil.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/1_Css/ValueMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/1_Css/ValueMaps.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/1_Css_Parser/CssParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/1_Css_Parser/CssParser.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/2_Svg/SvgElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/2_Svg/SvgElements.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/2_Svg/SvgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/2_Svg/SvgParser.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/2_Svg/SvgPathDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/2_Svg/SvgPathDataParser.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/2_Svg/SvgSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/2_Svg/SvgSpec.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/2_Svg/SvgTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/2_Svg/SvgTransformation.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/PaintLab.WebDom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/PaintLab.WebDom.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebDom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebDom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/CssLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/CssLexer.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/MyXmlLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/MyXmlLexer.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/PaintLab.WebLexer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/PaintLab.WebLexer.csproj -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/TextSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/TextSnapshot.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/XmlLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/XmlLexer.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/XmlLexer_debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/XmlLexer_debug.cs -------------------------------------------------------------------------------- /src/PixelFarm/PaintLab.WebLexer/dbugLexerReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PaintLab.WebLexer/dbugLexerReport.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.BasicVisualElements_SH/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.BasicVisualElements_SH/Color.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.BasicVisualElements_SH/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.BasicVisualElements_SH/Image.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.BasicVisualElements_SH/Q1Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.BasicVisualElements_SH/Q1Rect.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/1_IO/ImageReaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/1_IO/ImageReaders.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/1_IO/StorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/1_IO/StorageService.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/2_AggPainter/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/2_AggPainter/Tools.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/BasicElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/BasicElements.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/EdgeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/EdgeColor.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/EdgeColoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/EdgeColoring.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/EdgeSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/EdgeSegment.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/EquationSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/EquationSolver.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/Msdf3/MsdfGen3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/Msdf3/MsdfGen3.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/MsdfGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/MsdfGen.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Drawing/6_Msdf/SignedDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Drawing/6_Msdf/SignedDistance.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Painter_Layer1_SH/CO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Painter_Layer1_SH/CO.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Painter_Layer1_SH/MemBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Painter_Layer1_SH/MemBitmap.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Painter_Layer1_SH/MemMx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Painter_Layer1_SH/MemMx.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Painter_Layer2_SH/ForNet20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Painter_Layer2_SH/ForNet20.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Vectors_SH/2_Geometry/Arc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Vectors_SH/2_Geometry/Arc.cs -------------------------------------------------------------------------------- /src/PixelFarm/PixelFarm.Vectors_SH/5_Clipper/cliper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/PixelFarm.Vectors_SH/5_Clipper/cliper.cs -------------------------------------------------------------------------------- /src/PixelFarm/Typography.One/ExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/Typography.One/ExtensionAttribute.cs -------------------------------------------------------------------------------- /src/PixelFarm/Typography.One/Typography.One.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/Typography.One/Typography.One.csproj -------------------------------------------------------------------------------- /src/PixelFarm/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/app.config -------------------------------------------------------------------------------- /src/PixelFarm/x_autogen/PixelFarm.MiniAgg.One.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/x_autogen/PixelFarm.MiniAgg.One.csproj -------------------------------------------------------------------------------- /src/PixelFarm/x_autogen/PixelFarm.One.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/PixelFarm/x_autogen/PixelFarm.One.csproj -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/README.md -------------------------------------------------------------------------------- /src/Tests/Data/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/02.jpg -------------------------------------------------------------------------------- /src/Tests/Data/1f30b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/1f30b.svg -------------------------------------------------------------------------------- /src/Tests/Data/Poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Poem.txt -------------------------------------------------------------------------------- /src/Tests/Data/SampleImages/basemap01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/SampleImages/basemap01.png -------------------------------------------------------------------------------- /src/Tests/Data/SampleImages/lightmap01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/SampleImages/lightmap01.png -------------------------------------------------------------------------------- /src/Tests/Data/SampleImages/plain01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/SampleImages/plain01.png -------------------------------------------------------------------------------- /src/Tests/Data/SampleImages/test001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/SampleImages/test001.png -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/CubeMap_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/CubeMap_FS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/CubeMap_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/CubeMap_VS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/JuliaSet_SM2_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/JuliaSet_SM2_FS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/JuliaSet_SM3_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/JuliaSet_SM3_FS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/JuliaSet_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/JuliaSet_VS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/Parallax_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/Parallax_FS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/Parallax_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/Parallax_VS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/Picking_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/Picking_FS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/Picking_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/Picking_VS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/Simple_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/Simple_FS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Shaders/Simple_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Shaders/Simple_VS.glsl -------------------------------------------------------------------------------- /src/Tests/Data/Textures/JuliaColorTable.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/JuliaColorTable.bmp -------------------------------------------------------------------------------- /src/Tests/Data/Textures/Swizzled Textures License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/Swizzled Textures License.txt -------------------------------------------------------------------------------- /src/Tests/Data/Textures/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/cursor.png -------------------------------------------------------------------------------- /src/Tests/Data/Textures/earth-cubemap.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/earth-cubemap.dds -------------------------------------------------------------------------------- /src/Tests/Data/Textures/logo-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/logo-dark.jpg -------------------------------------------------------------------------------- /src/Tests/Data/Textures/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/logo.jpg -------------------------------------------------------------------------------- /src/Tests/Data/Textures/metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/metal.jpg -------------------------------------------------------------------------------- /src/Tests/Data/Textures/swizzled-rock-normal-gloss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/swizzled-rock-normal-gloss.dds -------------------------------------------------------------------------------- /src/Tests/Data/Textures/tahoma -358105584.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/tahoma -358105584.info -------------------------------------------------------------------------------- /src/Tests/Data/Textures/tahoma -358105584.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/tahoma -358105584.info.png -------------------------------------------------------------------------------- /src/Tests/Data/Textures/tahoma -488129008.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/tahoma -488129008.info -------------------------------------------------------------------------------- /src/Tests/Data/Textures/tahoma -488129008.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/Textures/tahoma -488129008.info.png -------------------------------------------------------------------------------- /src/Tests/Data/a00123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a00123.png -------------------------------------------------------------------------------- /src/Tests/Data/a001_x1_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a001_x1_65.png -------------------------------------------------------------------------------- /src/Tests/Data/a001_xn2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a001_xn2_8.png -------------------------------------------------------------------------------- /src/Tests/Data/a001_xn2_K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a001_xn2_K.png -------------------------------------------------------------------------------- /src/Tests/Data/a001_xn2_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a001_xn2_l.png -------------------------------------------------------------------------------- /src/Tests/Data/a_total.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a_total.png -------------------------------------------------------------------------------- /src/Tests/Data/a_total.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/a_total.xml -------------------------------------------------------------------------------- /src/Tests/Data/glyph_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/glyph_a.png -------------------------------------------------------------------------------- /src/Tests/Data/imgs/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/01.jpg -------------------------------------------------------------------------------- /src/Tests/Data/imgs/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/02.jpg -------------------------------------------------------------------------------- /src/Tests/Data/imgs/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/03.jpg -------------------------------------------------------------------------------- /src/Tests/Data/imgs/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/04.jpg -------------------------------------------------------------------------------- /src/Tests/Data/imgs/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/05.jpg -------------------------------------------------------------------------------- /src/Tests/Data/imgs/arrow_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/arrow_blank.png -------------------------------------------------------------------------------- /src/Tests/Data/imgs/arrow_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/arrow_close.png -------------------------------------------------------------------------------- /src/Tests/Data/imgs/arrow_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/arrow_open.png -------------------------------------------------------------------------------- /src/Tests/Data/imgs/favorites32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/favorites32.png -------------------------------------------------------------------------------- /src/Tests/Data/imgs/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/imgs/logo-dark.png -------------------------------------------------------------------------------- /src/Tests/Data/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/leaves.jpg -------------------------------------------------------------------------------- /src/Tests/Data/lion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion.svg -------------------------------------------------------------------------------- /src/Tests/Data/lion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion1.png -------------------------------------------------------------------------------- /src/Tests/Data/lion1_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion1_v2.png -------------------------------------------------------------------------------- /src/Tests/Data/lion1_v2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion1_v2_1.png -------------------------------------------------------------------------------- /src/Tests/Data/lion1_v2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion1_v2_2.png -------------------------------------------------------------------------------- /src/Tests/Data/lion1_v2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion1_v2_4.png -------------------------------------------------------------------------------- /src/Tests/Data/lion1_v2_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion1_v2_4_1.png -------------------------------------------------------------------------------- /src/Tests/Data/lion_1_v3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion_1_v3_1.png -------------------------------------------------------------------------------- /src/Tests/Data/lion_1_v3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion_1_v3_2.png -------------------------------------------------------------------------------- /src/Tests/Data/lion_1_v3_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion_1_v3_2_1.png -------------------------------------------------------------------------------- /src/Tests/Data/lion_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/lion_3_2.png -------------------------------------------------------------------------------- /src/Tests/Data/logo-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/logo-dark.jpg -------------------------------------------------------------------------------- /src/Tests/Data/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/logo-dark.png -------------------------------------------------------------------------------- /src/Tests/Data/logo-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/logo-texture.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_197.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_48.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_49.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_50.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_51.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_52.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_53.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_54.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_55.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_56.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_57.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_65.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_66.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_67.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_68.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_69.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_70.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_71.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_72.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_73.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_74.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_75.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_76.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_77.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_78.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_79.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_80.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_81.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_82.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_83.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_84.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_85.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_86.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_87.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_88.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_89.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_90.png -------------------------------------------------------------------------------- /src/Tests/Data/msdf_subpixel_rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/msdf_subpixel_rendering.png -------------------------------------------------------------------------------- /src/Tests/Data/plain01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/plain01.png -------------------------------------------------------------------------------- /src/Tests/Data/rect01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/rect01.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_48.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_49.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_50.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_51.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_52.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_53.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_54.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_55.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_56.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_57.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_65.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_66.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_67.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_68.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_69.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_70.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_71.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_72.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_73.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_74.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_75.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_76.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_77.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_78.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_79.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_80.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_81.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_82.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_83.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_84.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_85.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_86.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_87.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_88.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_89.png -------------------------------------------------------------------------------- /src/Tests/Data/sdf_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/sdf_90.png -------------------------------------------------------------------------------- /src/Tests/Data/shape_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/shape_v.png -------------------------------------------------------------------------------- /src/Tests/Data/spheres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/spheres.png -------------------------------------------------------------------------------- /src/Tests/Data/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/stars.png -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -293093872.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -293093872.info -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -293093872.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -293093872.info.png -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -358105584.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -358105584.info -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -358105584.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -358105584.info.png -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -455623152.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -455623152.info -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -455623152.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -455623152.info.png -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -488129008.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -488129008.info -------------------------------------------------------------------------------- /src/Tests/Data/tahoma -488129008.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tahoma -488129008.info.png -------------------------------------------------------------------------------- /src/Tests/Data/test_glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/test_glyphs.png -------------------------------------------------------------------------------- /src/Tests/Data/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/tiger.svg -------------------------------------------------------------------------------- /src/Tests/Data/v1_K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/v1_K.png -------------------------------------------------------------------------------- /src/Tests/Data/v1_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/v1_M.png -------------------------------------------------------------------------------- /src/Tests/Data/v1_MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/v1_MK.png -------------------------------------------------------------------------------- /src/Tests/Data/v1_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Data/v1_err.png -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/AppDelegate.cs -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/DrawnImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/DrawnImageView.cs -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/Entitlements.plist -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/GlyphPathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/GlyphPathBuilder.cs -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/Info.plist -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/Main.cs -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/Main.storyboard -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/PixelFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/PixelFarm.csproj -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/ViewController.cs -------------------------------------------------------------------------------- /src/Tests/MacSamples/PixelFarm/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MacSamples/PixelFarm/tahoma.ttf -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/Extension.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/LICENSE.md -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/Marius.Yoga.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/Marius.Yoga.csproj -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/Readme.md -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaAlign.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaArray.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaCachedMeasurement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaCachedMeasurement.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaCollectFlexItemsRowValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaCollectFlexItemsRowValues.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaConfig.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaDelegates.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaDimension.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaDirection.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaDisplay.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaEdge.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaExperimentalFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaExperimentalFeature.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaExtensions.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaFlexDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaFlexDirection.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaJustify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaJustify.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaLayout.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaMath.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaMeasureMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaMeasureMode.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaNode.Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaNode.Layout.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaNode.Public.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaNode.Public.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaNode.Spacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaNode.Spacing.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaNode.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaNodeType.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaOverflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaOverflow.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaPositionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaPositionType.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaPrintOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaPrintOptions.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaSize.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaStyle.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaUnit.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaValue.cs -------------------------------------------------------------------------------- /src/Tests/Marius.Yoga/YogaWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Marius.Yoga/YogaWrap.cs -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/Form1.cs -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/Form1.resx -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/Program.cs -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/TessListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/TessListener.cs -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/Tesselate_Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/Tesselate_Test.csproj -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/TestCase01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/TestCase01.cs -------------------------------------------------------------------------------- /src/Tests/MiniTesselate_Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/MiniTesselate_Test/packages.config -------------------------------------------------------------------------------- /src/Tests/Test0_WinNeutral/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test0_WinNeutral/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Test0_WinNeutral/Test0_WinNeutral.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test0_WinNeutral/Test0_WinNeutral.csproj -------------------------------------------------------------------------------- /src/Tests/Test4_MiniAggCanvas/AggSprite/BasicSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test4_MiniAggCanvas/AggSprite/BasicSprite.cs -------------------------------------------------------------------------------- /src/Tests/Test4_MiniAggCanvas/AggSprite/LionSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test4_MiniAggCanvas/AggSprite/LionSprite.cs -------------------------------------------------------------------------------- /src/Tests/Test4_MiniAggCanvas/AggSprite/SpriteShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test4_MiniAggCanvas/AggSprite/SpriteShape.cs -------------------------------------------------------------------------------- /src/Tests/Test4_MiniAggCanvas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test4_MiniAggCanvas/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestFoundamentalVectors/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestFoundamentalVectors/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Tests/TestFoundamentalVectors/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestFoundamentalVectors/Form1.cs -------------------------------------------------------------------------------- /src/Tests/TestFoundamentalVectors/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestFoundamentalVectors/Form1.resx -------------------------------------------------------------------------------- /src/Tests/TestFoundamentalVectors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestFoundamentalVectors/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestFoundamentalVectors/Tests/TestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestFoundamentalVectors/Tests/TestCases.cs -------------------------------------------------------------------------------- /src/Tests/TestFoundamentalVectors/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestFoundamentalVectors/app.config -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/GLFWProgram2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/GLFWProgram2.cs -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/TestGLES_GLFW.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/TestGLES_GLFW.csproj -------------------------------------------------------------------------------- /src/Tests/TestGLES_GLFW/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestGLES_GLFW/app.config -------------------------------------------------------------------------------- /src/Tests/TestMobile/CustomApp01/CustomApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/CustomApp01/CustomApp.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/CustomApp01/CustomApp01.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/CustomApp01/CustomApp01.projitems -------------------------------------------------------------------------------- /src/Tests/TestMobile/CustomApp01/CustomApp01.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/CustomApp01/CustomApp01.shproj -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/DroidSans.ttf -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/GLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/GLView.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/MainActivity.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/SOV_Thanamas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/SOV_Thanamas.ttf -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/TestApp01.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/TestApp01.Droid.csproj -------------------------------------------------------------------------------- /src/Tests/TestMobile/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/Droid/packages.config -------------------------------------------------------------------------------- /src/Tests/TestMobile/TestMobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/TestMobile.sln -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/DroidSans.ttf -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/GameViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/GameViewController.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/Info.plist -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/Main.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/Main.storyboard -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/SOV_Thanamas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/SOV_Thanamas.ttf -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/TestApp01.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/TestApp01.iOS.csproj -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/ViewController.designer.cs -------------------------------------------------------------------------------- /src/Tests/TestMobile/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestMobile/iOS/packages.config -------------------------------------------------------------------------------- /src/Tests/TestSamples_Painting_Focus/Shapes/Capsule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestSamples_Painting_Focus/Shapes/Capsule.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/App.config -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Form1.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Form1.resx -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/LayoutFarm.TestTextFlow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/LayoutFarm.TestTextFlow.csproj -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Program.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Win32API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Win32API.cs -------------------------------------------------------------------------------- /src/Tests/TestTextFlow/Win32Api2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/TestTextFlow/Win32Api2.cs -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/GLView1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/GLView1.cs -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/GettingStarted.Xamarin -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/MainActivity.cs -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/Resources/layout/Main.axml -------------------------------------------------------------------------------- /src/Tests/Test_AndroidApp1/Test_AndroidApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_AndroidApp1/Test_AndroidApp1.csproj -------------------------------------------------------------------------------- /src/Tests/Test_Android_BasicLion/GLView1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Android_BasicLion/GLView1.cs -------------------------------------------------------------------------------- /src/Tests/Test_Android_BasicLion/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Android_BasicLion/MainActivity.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/01.jpg -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/02.jpg -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/FlowerBurst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/FlowerBurst.jpg -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/Form1.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/Form1.resx -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/FormFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/FormFill.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/FormFill.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/FormFill.resx -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/FormShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/FormShape.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/FormShape.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/FormShape.resx -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/NativeMethods.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/app.config -------------------------------------------------------------------------------- /src/Tests/Test_BackEnd_DrawingBuffer/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_BackEnd_DrawingBuffer/circle.png -------------------------------------------------------------------------------- /src/Tests/Test_CpuBlitCoreRasterizer/PORT/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_CpuBlitCoreRasterizer/PORT/Main.cs -------------------------------------------------------------------------------- /src/Tests/Test_GlyphTess.MiniAggWinForms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_GlyphTess.MiniAggWinForms/Form1.cs -------------------------------------------------------------------------------- /src/Tests/Test_GlyphTess.MiniAggWinForms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_GlyphTess.MiniAggWinForms/Form1.resx -------------------------------------------------------------------------------- /src/Tests/Test_GlyphTess.MiniAggWinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_GlyphTess.MiniAggWinForms/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_GlyphTess.MiniAggWinForms/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_GlyphTess.MiniAggWinForms/app.config -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_GLFW_Misc/MyApp3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_GLFW_Misc/MyApp3.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_GLFW_Misc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_GLFW_Misc/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_GLFW_NetCore/MyApp3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_GLFW_NetCore/MyApp3.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_GLFW_NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_GLFW_NetCore/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/ColorCompoBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/ColorCompoBox.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_0.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_1.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_10.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_11.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_12.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_13.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_14.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_15.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_16.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_17.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_18.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_19.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_2.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_20.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_21.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_22.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_23.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_24.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_25.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_26.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_27.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_28.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_29.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_3.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_30.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_31.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_32.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_33.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_34.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_35.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_36.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_37.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_38.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_39.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_4.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_40.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_41.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_42.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_43.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_44.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_45.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_46.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_47.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_48.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_49.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_5.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_50.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_6.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_7.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_8.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Data/glyph_9.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/FormDev.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/FormDev.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/FormDev.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/FormDev.resx -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/FormTestBed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/FormTestBed.cs -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/FormTestBed.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/FormTestBed.resx -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Samples/lion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Samples/lion.svg -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/Samples/lion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/Samples/lion1.png -------------------------------------------------------------------------------- /src/Tests/Test_MiniAgg_GLES_Painting/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_MiniAgg_GLES_Painting/app.config -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/BackEnd.FilterFx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/BackEnd.FilterFx.sln -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/FORK.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/FORK.TXT -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/PdnCore/PdnCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/PdnCore/PdnCore.csproj -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/README.md -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnCore/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnCore/TestPdnCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnCore/TestPdnCore.csproj -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnEffect/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnEffect/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnEffect/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnEffect/Form1.cs -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnEffect/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnEffect/Form1.resx -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnEffect/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnEffect/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnEffect/TestPdnEffect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnEffect/TestPdnEffect.csproj -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnWinForm/FormTestPaintFx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnWinForm/FormTestPaintFx.cs -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnWinForm/FormTestPaintFx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnWinForm/FormTestPaintFx.resx -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnWinForm/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_Pdn/TestPdnWinForm/TestPdnEffect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_Pdn/TestPdnWinForm/TestPdnEffect.csproj -------------------------------------------------------------------------------- /src/Tests/Test_RenderTreeFocus/0_Start/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_RenderTreeFocus/0_Start/Program.cs -------------------------------------------------------------------------------- /src/Tests/Test_RenderTreeFocus/Data/colorbrewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_RenderTreeFocus/Data/colorbrewer.txt -------------------------------------------------------------------------------- /src/Tests/Test_RenderTreeFocus/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_RenderTreeFocus/app.config -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS.sln -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS/Test_iOS.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS/Test_iOS.iOS/Info.plist -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS/Test_iOS.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS/Test_iOS.iOS/Main.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS/Test_iOS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS/Test_iOS/App.xaml -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS/Test_iOS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS/Test_iOS/App.xaml.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS/Test_iOS/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS/Test_iOS/MainPage.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOS/Test_iOS/Test_iOS/Test_iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS/Test_iOS/Test_iOS/Test_iOS.csproj -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/AppDelegate.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Entitlements.plist -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/GameViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/GameViewController.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/GettingStarted.Xamarin -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Info.plist -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Main.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Main.storyboard -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /src/Tests/Test_iOSApp1/Test_iOSApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOSApp1/Test_iOSApp1.csproj -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/AppDelegate.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/Entitlements.plist -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/GameViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/GameViewController.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/GettingStarted.Xamarin -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/Info.plist -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/Main.cs -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/Main.storyboard -------------------------------------------------------------------------------- /src/Tests/Test_iOS_BasicLion/Test_iOS_BasicLion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/Test_iOS_BasicLion/Test_iOS_BasicLion.csproj -------------------------------------------------------------------------------- /src/Tests/WinFormTestBed2/TestBedStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/WinFormTestBed2/TestBedStartup.cs -------------------------------------------------------------------------------- /src/Tests/WinFormTestBed2/WinFormTestBed2.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/WinFormTestBed2/WinFormTestBed2.projitems -------------------------------------------------------------------------------- /src/Tests/WinFormTestBed2/WinFormTestBed2.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tests/WinFormTestBed2/WinFormTestBed2.shproj -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/BuildMergeProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/BuildMergeProject.csproj -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/Program.cs -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/Xamarin_Droid_Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/Xamarin_Droid_Template.xml -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/Xamarin_iOS_Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/Xamarin_iOS_Template.xml -------------------------------------------------------------------------------- /src/Tools/BuildMergeProject/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/BuildMergeProject/app.config -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/FormBuildMergeProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/FormBuildMergeProject.cs -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/FormBuildMergeProject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/FormBuildMergeProject.resx -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/MergeProjectTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/MergeProjectTool.csproj -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/MergeProjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/MergeProjects.cs -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/MergeProjectsToolBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/MergeProjectsToolBox.cs -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/MergeProjectsToolBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/MergeProjectsToolBox.resx -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/MergeProjectTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/MergeProjectTool/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/AtlasProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/AtlasProject.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/Builders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/Builders.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/FontBuilderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/FontBuilderConfig.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/FormBitmapAtlasBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/FormBitmapAtlasBuilder.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/FormBitmapAtlasBuilder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/FormBitmapAtlasBuilder.resx -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/PaintLabResTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/PaintLabResTool.csproj -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/PathUtils.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/Program.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Tools/PaintLabResTool/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/PaintLabResTool/app.config -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x64/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x64/d3dcompiler_47.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x64/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x64/libEGL.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x64/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x64/libGLESv2.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x64/swiftshader/libegl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x64/swiftshader/libegl.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x64/swiftshader/libglesv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x64/swiftshader/libglesv2.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x86/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x86/d3dcompiler_47.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x86/libegl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x86/libegl.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x86/libglesv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x86/libglesv2.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x86/swiftshader/libegl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x86/swiftshader/libegl.dll -------------------------------------------------------------------------------- /src/Tools/dlls/angle/_x86/swiftshader/libglesv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/angle/_x86/swiftshader/libglesv2.dll -------------------------------------------------------------------------------- /src/Tools/dlls/glfw3.3/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/glfw3.3/glfw3.dll -------------------------------------------------------------------------------- /src/Tools/dlls/myft.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/Tools/dlls/myft.dll -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "PixelFarm/autogen" ] 3 | } -------------------------------------------------------------------------------- /src/x_autogen/MiniOpenTK/MiniOpenTK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/x_autogen/MiniOpenTK/MiniOpenTK.csproj -------------------------------------------------------------------------------- /src/x_merge_projects/MiniOpenTK/MiniOpenTK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/x_merge_projects/MiniOpenTK/MiniOpenTK.csproj -------------------------------------------------------------------------------- /src/x_resource_projects/GeneralResources/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/x_resource_projects/GeneralResources/config.xml -------------------------------------------------------------------------------- /src/x_resource_projects/GeneralResources/test_css01.css: -------------------------------------------------------------------------------- 1 | .div{background-color:red} -------------------------------------------------------------------------------- /src/x_resource_projects/TestAtlas1/TestAtlas1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/x_resource_projects/TestAtlas1/TestAtlas1.csproj -------------------------------------------------------------------------------- /src/x_resource_projects/TestAtlas1/TestAtlas1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/x_resource_projects/TestAtlas1/TestAtlas1.info -------------------------------------------------------------------------------- /src/x_resource_projects/TestAtlas1/TestAtlas1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaintLab/PixelFarm/HEAD/src/x_resource_projects/TestAtlas1/TestAtlas1.png --------------------------------------------------------------------------------