File: InterpType.xml

package info (click to toggle)
gtk-sharp3 2.99.3-4.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 25,488 kB
  • sloc: xml: 308,885; cs: 38,796; sh: 11,336; perl: 1,295; makefile: 1,099; ansic: 903
file content (82 lines) | stat: -rw-r--r-- 3,929 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<Type Name="InterpType" FullName="Gdk.InterpType">
  <TypeSignature Language="C#" Maintainer="auto" Value="public enum InterpType" />
  <TypeSignature Language="ILAsm" Value=".class public auto ansi sealed InterpType extends System.Enum" />
  <AssemblyInfo>
    <AssemblyName>gdk-sharp</AssemblyName>
    <AssemblyPublicKey>
    </AssemblyPublicKey>
  </AssemblyInfo>
  <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
  <Base>
    <BaseTypeName>System.Enum</BaseTypeName>
  </Base>
  <Attributes>
    <Attribute>
      <AttributeName>GLib.GType(typeof(Gdk.InterpTypeGType))</AttributeName>
    </Attribute>
  </Attributes>
  <Docs>
    <summary>Interpolation mode for scaling operations.</summary>
    <remarks>Bilinear is the best balance in most cases.
Nearest provides faster (and low quality) scaling, while Hyper is slow but high-quality. 
</remarks>
  </Docs>
  <Members>
    <Member MemberName="Bilinear">
      <MemberSignature Language="C#" Value="Bilinear" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype Gdk.InterpType Bilinear = int32(2)" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>Gdk.InterpType</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Best quality/speed balance; use this mode by default. Bilinear interpolation. For enlargement, it is equivalent to point-sampling the ideal bilinear-interpolated image. For reduction, it is equivalent to laying down small tiles and integrating over the coverage area.</summary>
        <remarks>
        </remarks>
      </Docs>
    </Member>
    <Member MemberName="Hyper">
      <MemberSignature Language="C#" Value="Hyper" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype Gdk.InterpType Hyper = int32(3)" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>Gdk.InterpType</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>This is the slowest and highest quality reconstruction function. It is derived from the hyperbolic filters in Wolberg's "Digital Image Warping", and is formally defined as the hyperbolic-filter sampling the ideal hyperbolic-filter interpolated image (the filter is designed to be idempotent for 1:1 pixel mapping).</summary>
        <remarks>
        </remarks>
      </Docs>
    </Member>
    <Member MemberName="Nearest">
      <MemberSignature Language="C#" Value="Nearest" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype Gdk.InterpType Nearest = int32(0)" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>Gdk.InterpType</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Nearest neighbor sampling; this is the fastest and lowest quality mode. Quality is normally unacceptable when scaling down, but may be OK when scaling up.</summary>
        <remarks>
        </remarks>
      </Docs>
    </Member>
    <Member MemberName="Tiles">
      <MemberSignature Language="C#" Value="Tiles" />
      <MemberSignature Language="ILAsm" Value=".field public static literal valuetype Gdk.InterpType Tiles = int32(1)" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>Gdk.InterpType</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>This is an accurate simulation of the PostScript image operator without any interpolation enabled. Each pixel is rendered as a tiny parallelogram of solid color, the edges of which are implemented with antialiasing. It resembles nearest neighbor for enlargement, and bilinear for reduction.</summary>
        <remarks>
        </remarks>
      </Docs>
    </Member>
  </Members>
</Type>