C# Class CSharpGL.Framebuffer

Inheritance: IDisposable
Afficher le fichier Open project: bitzhuwei/CSharpGL Class Usage Examples

Méthodes publiques

Méthode Description
Bind ( FramebufferTarget target = FramebufferTarget.Framebuffer ) : void

start to use this framebuffer.

CheckCompleteness ( ) : bool

check completeness.

Dispose ( ) : void

Framebuffer ( ) : System

Create an empty framebuffer object.

MaxColorAttachments ( ) : int

MaxFramebufferHeight ( ) : int

MaxFramebufferLayers ( ) : int

MaxFramebufferSamples ( ) : int

MaxFramebufferWidth ( ) : int

SetParameter ( int width, int height, int samples ) : void

Sets the size of an empty framebuffer.

ToString ( ) : string

Unbind ( FramebufferTarget target = FramebufferTarget.Framebuffer ) : void

stop to use this framebuffer(and use default framebuffer).

Private Methods

Méthode Description
Dispose ( bool disposing ) : void

Method Details

Bind() public méthode

start to use this framebuffer.
public Bind ( FramebufferTarget target = FramebufferTarget.Framebuffer ) : void
target FramebufferTarget
Résultat void

CheckCompleteness() public méthode

check completeness.
public CheckCompleteness ( ) : bool
Résultat bool

Dispose() public méthode

public Dispose ( ) : void
Résultat void

Framebuffer() public méthode

Create an empty framebuffer object.
public Framebuffer ( ) : System
Résultat System

MaxColorAttachments() public static méthode

public static MaxColorAttachments ( ) : int
Résultat int

MaxFramebufferHeight() public static méthode

public static MaxFramebufferHeight ( ) : int
Résultat int

MaxFramebufferLayers() public static méthode

public static MaxFramebufferLayers ( ) : int
Résultat int

MaxFramebufferSamples() public static méthode

public static MaxFramebufferSamples ( ) : int
Résultat int

MaxFramebufferWidth() public static méthode

public static MaxFramebufferWidth ( ) : int
Résultat int

SetParameter() public méthode

Sets the size of an empty framebuffer.
public SetParameter ( int width, int height, int samples ) : void
width int
height int
samples int how many samples?
Résultat void

ToString() public méthode

public ToString ( ) : string
Résultat string

Unbind() public méthode

stop to use this framebuffer(and use default framebuffer).
public Unbind ( FramebufferTarget target = FramebufferTarget.Framebuffer ) : void
target FramebufferTarget
Résultat void