Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / RenderCapability.cs / 1305600 / RenderCapability.cs
//------------------------------------------------------------------------------ // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // The RenderCapability class allows clients to query for the current // render tier associated with their Dispatcher and to register for // notification on change. // //----------------------------------------------------------------------------- using System; using System.Diagnostics; namespace System.Windows.Media { ////// RenderCapability - /// The RenderCapability class allows clients to query for the current /// render tier associated with their Dispatcher and to register for /// notification on change. /// public static class RenderCapability { ////// Tier Property - returns the current render tier for the Dispatcher associated /// with the current thread. /// public static int Tier { get { MediaContext mediaContext = MediaContext.CurrentMediaContext; // The Dispatcher auto-creates if there is no Dispatcher associated with this // thread, and the MediaContext does the same. Thus, mediaContext should never // be null. Debug.Assert(mediaContext != null); return mediaContext.Tier; } } ////// Returns whether the specified PixelShader major/minor version is /// supported by this version of WPF, and whether Effects using the /// specified major/minor version can run on the GPU. /// public static bool IsPixelShaderVersionSupported(short majorVersionRequested, short minorVersionRequested) { bool isSupported = false; // // For now, we only support PS 2.0 and 3.0. Can only return true if this is // the version asked for. // if (majorVersionRequested == 2 && minorVersionRequested == 0 || majorVersionRequested == 3 && minorVersionRequested == 0) { // Now actually check. MediaContext mediaContext = MediaContext.CurrentMediaContext; byte majorVersion = (byte)((mediaContext.PixelShaderVersion >> 8) & 0xFF); byte minorVersion = (byte)((mediaContext.PixelShaderVersion >> 0) & 0xFF); // We assume here that a higher version does in fact support the // version we're requiring. if (majorVersion >= majorVersionRequested) { isSupported = true; } else if (majorVersion == majorVersionRequested && minorVersion >= minorVersionRequested) { isSupported = true; } } return isSupported; } ////// Returns whether Effects can be rendered in software on this machine. /// public static bool IsPixelShaderVersionSupportedInSoftware(short majorVersionRequested, short minorVersionRequested) { bool isSupported = false; // // Software rendering is only supported for PS 2.0. // if (majorVersionRequested == 2 && minorVersionRequested == 0) { // Now actually check. MediaContext mediaContext = MediaContext.CurrentMediaContext; isSupported = mediaContext.HasSSE2Support; } return isSupported; } ////// Returns whether Effects can be rendered in software on this machine. /// [Obsolete(IsShaderEffectSoftwareRenderingSupported_Deprecated)] public static bool IsShaderEffectSoftwareRenderingSupported { get { MediaContext mediaContext = MediaContext.CurrentMediaContext; return mediaContext.HasSSE2Support; } } ////// Returns the maximum number of instruction slots supported. /// The number of instruction slots supported by PS 3.0 varies, but will be at least 512. /// public static int MaxPixelShaderInstructionSlots(short majorVersionRequested, short minorVersionRequested) { if (majorVersionRequested == 2 && minorVersionRequested == 0) { // ps_2_0 supports 32 texture + 64 arithmetic = 96 instruction slots. return 96; } else if (majorVersionRequested == 3 && minorVersionRequested == 0) { MediaContext mediaContext = MediaContext.CurrentMediaContext; return (int)mediaContext.MaxPixelShader30InstructionSlots; } else { // anything other than ps_2_0 and ps_3_0 are not supported. return 0; } } ////// Returns the maximum width and height for texture creation of the underlying /// hardware device. If there are multiple devices, this returns the minumum size /// among them. /// public static Size MaxHardwareTextureSize { get { MediaContext mediaContext = MediaContext.CurrentMediaContext; return mediaContext.MaxTextureSize; } } ////// TierChanged event - /// This event is raised when the Tier for a given Dispatcher changes. /// public static event EventHandler TierChanged { add { MediaContext mediaContext = MediaContext.CurrentMediaContext; // The Dispatcher auto-creates if there is no Dispatcher associated with this // thread, and the MediaContext does the same. Thus, mediaContext should never // be null. Debug.Assert(mediaContext != null); mediaContext.TierChanged += value; } remove { MediaContext mediaContext = MediaContext.CurrentMediaContext; // The Dispatcher auto-creates if there is no Dispatcher associated with this // thread, and the MediaContext does the same. Thus, mediaContext should never // be null. Debug.Assert(mediaContext != null); mediaContext.TierChanged -= value; } } private const string IsShaderEffectSoftwareRenderingSupported_Deprecated = "IsShaderEffectSoftwareRenderingSupported property is deprecated. Use IsPixelShaderVersionSupportedInSoftware static method instead."; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // The RenderCapability class allows clients to query for the current // render tier associated with their Dispatcher and to register for // notification on change. // //----------------------------------------------------------------------------- using System; using System.Diagnostics; namespace System.Windows.Media { ////// RenderCapability - /// The RenderCapability class allows clients to query for the current /// render tier associated with their Dispatcher and to register for /// notification on change. /// public static class RenderCapability { ////// Tier Property - returns the current render tier for the Dispatcher associated /// with the current thread. /// public static int Tier { get { MediaContext mediaContext = MediaContext.CurrentMediaContext; // The Dispatcher auto-creates if there is no Dispatcher associated with this // thread, and the MediaContext does the same. Thus, mediaContext should never // be null. Debug.Assert(mediaContext != null); return mediaContext.Tier; } } ////// Returns whether the specified PixelShader major/minor version is /// supported by this version of WPF, and whether Effects using the /// specified major/minor version can run on the GPU. /// public static bool IsPixelShaderVersionSupported(short majorVersionRequested, short minorVersionRequested) { bool isSupported = false; // // For now, we only support PS 2.0 and 3.0. Can only return true if this is // the version asked for. // if (majorVersionRequested == 2 && minorVersionRequested == 0 || majorVersionRequested == 3 && minorVersionRequested == 0) { // Now actually check. MediaContext mediaContext = MediaContext.CurrentMediaContext; byte majorVersion = (byte)((mediaContext.PixelShaderVersion >> 8) & 0xFF); byte minorVersion = (byte)((mediaContext.PixelShaderVersion >> 0) & 0xFF); // We assume here that a higher version does in fact support the // version we're requiring. if (majorVersion >= majorVersionRequested) { isSupported = true; } else if (majorVersion == majorVersionRequested && minorVersion >= minorVersionRequested) { isSupported = true; } } return isSupported; } ////// Returns whether Effects can be rendered in software on this machine. /// public static bool IsPixelShaderVersionSupportedInSoftware(short majorVersionRequested, short minorVersionRequested) { bool isSupported = false; // // Software rendering is only supported for PS 2.0. // if (majorVersionRequested == 2 && minorVersionRequested == 0) { // Now actually check. MediaContext mediaContext = MediaContext.CurrentMediaContext; isSupported = mediaContext.HasSSE2Support; } return isSupported; } ////// Returns whether Effects can be rendered in software on this machine. /// [Obsolete(IsShaderEffectSoftwareRenderingSupported_Deprecated)] public static bool IsShaderEffectSoftwareRenderingSupported { get { MediaContext mediaContext = MediaContext.CurrentMediaContext; return mediaContext.HasSSE2Support; } } ////// Returns the maximum number of instruction slots supported. /// The number of instruction slots supported by PS 3.0 varies, but will be at least 512. /// public static int MaxPixelShaderInstructionSlots(short majorVersionRequested, short minorVersionRequested) { if (majorVersionRequested == 2 && minorVersionRequested == 0) { // ps_2_0 supports 32 texture + 64 arithmetic = 96 instruction slots. return 96; } else if (majorVersionRequested == 3 && minorVersionRequested == 0) { MediaContext mediaContext = MediaContext.CurrentMediaContext; return (int)mediaContext.MaxPixelShader30InstructionSlots; } else { // anything other than ps_2_0 and ps_3_0 are not supported. return 0; } } ////// Returns the maximum width and height for texture creation of the underlying /// hardware device. If there are multiple devices, this returns the minumum size /// among them. /// public static Size MaxHardwareTextureSize { get { MediaContext mediaContext = MediaContext.CurrentMediaContext; return mediaContext.MaxTextureSize; } } ////// TierChanged event - /// This event is raised when the Tier for a given Dispatcher changes. /// public static event EventHandler TierChanged { add { MediaContext mediaContext = MediaContext.CurrentMediaContext; // The Dispatcher auto-creates if there is no Dispatcher associated with this // thread, and the MediaContext does the same. Thus, mediaContext should never // be null. Debug.Assert(mediaContext != null); mediaContext.TierChanged += value; } remove { MediaContext mediaContext = MediaContext.CurrentMediaContext; // The Dispatcher auto-creates if there is no Dispatcher associated with this // thread, and the MediaContext does the same. Thus, mediaContext should never // be null. Debug.Assert(mediaContext != null); mediaContext.TierChanged -= value; } } private const string IsShaderEffectSoftwareRenderingSupported_Deprecated = "IsShaderEffectSoftwareRenderingSupported property is deprecated. Use IsPixelShaderVersionSupportedInSoftware static method instead."; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Renderer.cs
- ScriptingRoleServiceSection.cs
- SSmlParser.cs
- EntityObject.cs
- DocumentXPathNavigator.cs
- AccessKeyManager.cs
- ColumnCollectionEditor.cs
- GeneralTransform.cs
- HashSet.cs
- DSASignatureDeformatter.cs
- SqlBooleanMismatchVisitor.cs
- AdvancedBindingPropertyDescriptor.cs
- EdmEntityTypeAttribute.cs
- LoginDesignerUtil.cs
- TogglePattern.cs
- Icon.cs
- TextStore.cs
- TypeCacheManager.cs
- UITypeEditor.cs
- ExpressionDumper.cs
- CustomAttributeBuilder.cs
- DataBinding.cs
- BuildProviderCollection.cs
- cookiecontainer.cs
- StorageModelBuildProvider.cs
- MoveSizeWinEventHandler.cs
- HealthMonitoringSectionHelper.cs
- SqlXmlStorage.cs
- RequestCachingSection.cs
- NumericPagerField.cs
- StylusPointPropertyInfoDefaults.cs
- XmlStreamStore.cs
- StringCollectionEditor.cs
- HttpMethodAttribute.cs
- HiddenField.cs
- DependencyPropertyConverter.cs
- ToolboxComponentsCreatingEventArgs.cs
- XmlSignificantWhitespace.cs
- XamlPointCollectionSerializer.cs
- XmlSchemaComplexContent.cs
- OleDbInfoMessageEvent.cs
- AspProxy.cs
- PageAsyncTask.cs
- FormatException.cs
- Triangle.cs
- UndoManager.cs
- AbstractDataSvcMapFileLoader.cs
- hwndwrapper.cs
- XmlNamedNodeMap.cs
- VBCodeProvider.cs
- PathSegmentCollection.cs
- UIElementParagraph.cs
- CoreChannel.cs
- PerformanceCounterPermissionEntryCollection.cs
- ImageList.cs
- SelectorAutomationPeer.cs
- VectorKeyFrameCollection.cs
- WebPartZoneAutoFormat.cs
- ProxyWebPartManager.cs
- IdentityReference.cs
- CodeAttributeDeclaration.cs
- WindowsProgressbar.cs
- ColorConverter.cs
- AssemblyName.cs
- HandlerWithFactory.cs
- NamespaceListProperty.cs
- CatalogPart.cs
- SchemaNotation.cs
- SystemUnicastIPAddressInformation.cs
- ExceptionList.cs
- documentsequencetextpointer.cs
- ServiceActivationException.cs
- ErrorStyle.cs
- SourceFileBuildProvider.cs
- XmlDocumentFragment.cs
- IdnMapping.cs
- ActiveXSite.cs
- Terminate.cs
- WebExceptionStatus.cs
- MenuItemBinding.cs
- TrackingConditionCollection.cs
- WpfWebRequestHelper.cs
- BackEase.cs
- NullableDecimalSumAggregationOperator.cs
- ProcessHostConfigUtils.cs
- FormsAuthenticationUserCollection.cs
- XmlSchemaSet.cs
- ListBoxItem.cs
- MachineKeySection.cs
- DataColumnCollection.cs
- MissingFieldException.cs
- Behavior.cs
- LeaseManager.cs
- XmlSchemaGroup.cs
- BaseValidatorDesigner.cs
- NodeFunctions.cs
- FileLoadException.cs
- ReflectionServiceProvider.cs
- BamlReader.cs
- WsdlInspector.cs