RenderCapability.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / 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.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK