DicomObjects.NET10 Documentation
DicomObjects.Delegates Namespace / CustomSmoothingFunctionDelegate Delegate
Pixel Offset
Filter Mode needs to be set to
Size of the Vector4 Subresource for DX smoothing buffer, default value is 256



In This Topic
    CustomSmoothingFunctionDelegate Delegate
    In This Topic
    Customer Defined Smoothing function for DX rendering
    Syntax
    'Declaration
     
    
    Public Delegate Function CustomSmoothingFunctionDelegate( _
       ByRef Offset As OpenTK.Mathematics.Vector2, _
       ByVal Mode As FilterMode, _
       Optional ByVal SmoothingSize As Integer _
    ) As OpenTK.Mathematics.Vector4()
    'Usage
     
    
    Dim instance As New CustomSmoothingFunctionDelegate(AddressOf HandlerMethod)
    public delegate OpenTK.Mathematics.Vector4[] CustomSmoothingFunctionDelegate( 
       out OpenTK.Mathematics.Vector2 Offset,
       FilterMode Mode,
       int SmoothingSize
    )
    public delegate OpenTK.Mathematics.array<Vector4>^ CustomSmoothingFunctionDelegate( 
       [Out] OpenTK.Mathematics.Vector2 Offset,
       FilterMode Mode,
       int SmoothingSize
    )

    Parameters

    Offset
    Pixel Offset
    Mode
    Filter Mode needs to be set to
    SmoothingSize
    Size of the Vector4 Subresource for DX smoothing buffer, default value is 256
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also