Click or drag to resize

Program Class

A program that combines a vertex shader and a fragment shader.
Inheritance Hierarchy

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public sealed class Program : GLObject

The Program type exposes the following members.

Constructors
  NameDescription
Public methodProgram
Creates an empty program object.
Public methodProgram(Shader, Shader)
Creates an empty program object.
Top
Properties
  NameDescription
Public propertyActiveAttributes
Get the number of active attribute variables in the program.
Public propertyActiveUniforms
Get the number of active uniform variables in the program.
Public propertyStatic memberCurrent
Get the program that is currently active.
Public propertyDeleteStatus
Get the delete status.
Public propertyHandle
Internal OpenGL handle to the object
(Inherited from GLObject.)
Public propertyLinkStatus
Get the link status.
Public propertyValidateStatus
Get the validate status.
Top
Methods
  NameDescription
Public methodAttachShader
Attach a shader object to the program.
Public methodAttachShaders
Attaches a vertex shader and fragment shader in a single call.
Public methodDetachShader
Detach a shader object from a program object.
Public methodDispose
Disposes of the OpenGL object
(Inherited from GLObject.)
Public methodEquals
Checks if this object matches another object.
(Inherited from GLObject.)
Public methodGetAttachedShaders
Return the shader objects attached to the program.
Public methodGetAttributeInfo
Return information about an active attribute variable.
Public methodGetHashCode
Returns a hash code for this object
(Inherited from GLObject.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetUniformInfo
Return information about an active uniform variable.
Public methodLink
Links the program.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUse
Installs the program object as part of current rendering state.
Public methodValidate
Validates the program.
Top
See Also