66 references to Configuration
ReachFramework (66)
AlphaFlattener\BrushProxy.cs (3)
1122cost = Configuration.RasterizationCost( 1132cost = Configuration.RasterizationCost(size.Width, size.Height); 3897step *= Configuration.GradientDecompositionDensity; // Adjust by external supplied density
AlphaFlattener\DrawingContext.cs (13)
264if (steps > Configuration.MaxGradientSteps) // Avoid decomposition if there are too many steps 387if (steps > Configuration.MaxGradientSteps) // Avoid decomposition if there are too many steps 546if (Configuration.Verbose >= 2) 568if (brush.GetBrushDepth() > Configuration.DecompositionDepth) 576_cost = - Configuration.RasterizationCost(bounds.Width, bounds.Height); 603int width = (int) Math.Round(bounds.Width * Configuration.RasterizationDPI / 96); 604int height = (int) Math.Round(bounds.Height * Configuration.RasterizationDPI / 96); 655return 512 + Configuration.RasterizationCost(bounds.Width, bounds.Height); 661return 512 + Configuration.RasterizationCost(Math.Max(bounds.Width, bounds.Height)); 664return 512 + Configuration.RasterizationCost(bounds.Width, bounds.Height); 814if (Configuration.Verbose >= 2) 910if (Configuration.Verbose >= 2) 960if (Configuration.Verbose >= 2)
AlphaFlattener\Flattener.cs (31)
144if (Configuration.BlendAlphaWithWhite || Configuration.ForceAlphaOpaque || 164if (Configuration.Verbose >= 2) 178if (Configuration.Verbose >= 2) 187if (Configuration.Verbose >= 2) 298if (Configuration.BlendAlphaWithWhite || Configuration.ForceAlphaOpaque) 331if (Configuration.Verbose >= 2) 379if (Configuration.Verbose >= 2) 398if (Configuration.Verbose >= 2) 964if (Configuration.Verbose >= 1) 1011if (Configuration.SerializePrimitives) 1101if (overlapHasTransparency > Configuration.MaximumTransparencyLayer) 1207Configuration.RasterizationDPI = 96; 1208Configuration.MaximumTransparencyLayer = 8; 1209Configuration.GradientDecompositionDensity = 0.75; 1210Configuration.DecompositionDepth = 2; 1214Configuration.RasterizationDPI = 150; 1215Configuration.MaximumTransparencyLayer = 12; 1216Configuration.GradientDecompositionDensity = 1; 1217Configuration.DecompositionDepth = 3; 1221Configuration.RasterizationDPI = 300; 1222Configuration.MaximumTransparencyLayer = 16; 1223Configuration.GradientDecompositionDensity = 1.25; 1224Configuration.DecompositionDepth = 4; 1229Configuration.RasterizationDPI = (int)(Math.Max(dcDpi, 300)); 1230Configuration.MaximumTransparencyLayer = 16; 1231Configuration.GradientDecompositionDensity = 1.25; 1232Configuration.DecompositionDepth = 4; 1238if (Configuration.Verbose >= 2) 1274if (Configuration.Verbose >= 2)
AlphaFlattener\MetroDevice.cs (4)
547jobIdentifier = m_GDIExporter.StartDocument(m_PrintQueue.FullName, jobName, Configuration.OutputFile, m_Devmode); 611m_GDIExporter.StartDocumentWithoutCreatingDC(printerName, jobName, Configuration.OutputFile); 647m_GDIExporter.StartPage(GetDevmode(ticket, printTicketXMLStr), Configuration.RasterizationDPI); 651m_GDIExporter.StartPage(null, Configuration.RasterizationDPI);
AlphaFlattener\Optimizer.cs (4)
46int width = (int)Math.Round(m_bounds.Width * Configuration.RasterizationDPI / 96); 47int height = (int)Math.Round(m_bounds.Height * Configuration.RasterizationDPI / 96); 304double diff = - Configuration.RasterizationCost(m_bounds.Width, m_bounds.Height); 370diff += Configuration.RasterizationCost(bounds.Width, bounds.Height);
AlphaFlattener\Primitive.cs (2)
873double primitiveRasterizeCost = Configuration.RasterizationCost( 1971return Configuration.RasterizationCost(bounds.Width, bounds.Height);
AlphaFlattener\PrimitiveList.cs (2)
289if (skip && (Configuration.Verbose >= 2)) 364if (Configuration.Verbose >= 2)
AlphaFlattener\Utility.cs (6)
41if (Configuration.Verbose >= 2) 981if (Configuration.Verbose >= 2) 1142if (Configuration.ForceAlphaOpaque) 1866bitmapDpiX = approxWorldBounds.Width / visualBounds.Width * Configuration.RasterizationDPI; 1867bitmapDpiY = approxWorldBounds.Height / visualBounds.Height * Configuration.RasterizationDPI; 2337return Configuration.DisplayPageDebugHeader;
Serialization\VisualTreeFlattener.cs (1)
786testhook |= Microsoft.Internal.AlphaFlattener.Configuration.SetValue(key, e.Value);