Click or drag to resize

VertexAttribute Structure

Represents a single vertex attribute in a Program.

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public struct VertexAttribute

The VertexAttribute type exposes the following members.

Constructors
  NameDescription
Public methodVertexAttribute(Program, String)
Creates a vertex attribute.
Public methodVertexAttribute(Program, Int32, String)
Creates a vertex attribute by binding a user-defined attribute name to an attribute location.
Top
Properties
  NameDescription
Public propertyBuffer
Get the buffer object currently bound to the binding point corresponding to the generic vertex attribute.
Public propertyIsEnabled
Get whether the vertex attribute is enabled or not.
Public propertyIsNormalized
Get whether data for the vertex attribute is normalized when converted to floating-point.
Public propertyLocation
When the vertex attribute is used with client data (that is, when SetData(VertexAttributeDataType, Int32, Void*, Int32, Boolean) is used), then this method returns a pointer to the client data.
Public propertySize
Get the size of the vertex attribute.
Public propertyStride
Get the array stride for (number of bytes between successive elements in) the vertex attribute.
Public propertyValue
Get the current value for the generic vertex attribute.
Public propertyVertexDataType
Get the data type of the vertex attribute.
Top
Methods
  NameDescription
Public methodDisable
Disables this vertex attribute.
Public methodEnable
Enables this vertex attribute.
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodSetConfig(VertexAttributeDataType, Int32, Int32, Int32)
Sets up the attribute for use with a DataBuffer (of type Vertex).
Public methodSetConfigT(Int32, Int32)
Sets up the attribute for use with a DataBuffer (of type Vertex).
Public methodSetData(VertexAttributeDataType, Int32, Void*, Int32, Boolean)
Sets up the attribute for use with client data.
Public methodSetDataT(T, Int32, Boolean)
Sets up the attribute for use with client data.
Public methodSetDataT(VertexAttributeDataType, Int32, T, Int32, Boolean)
Sets up the attribute for use with client data.
Public methodSetValue(Matrix2)
Specify the value of a generic vertex attribute or type Matrix2
Public methodSetValue(Matrix2)
Specify the value of a generic vertex attribute or type Matrix2
Public methodSetValue(Matrix3)
Specify the value of a generic vertex attribute or type Matrix3
Public methodSetValue(Matrix3)
Specify the value of a generic vertex attribute or type Matrix3
Public methodSetValue(Matrix4)
Specify the value of a generic vertex attribute or type Matrix4
Public methodSetValue(Matrix4)
Specify the value of a generic vertex attribute or type Matrix4
Public methodSetValue(Vector2)
Specify the value of a generic vertex attribute or type Vector2
Public methodSetValue(Vector2)
Specify the value of a generic vertex attribute or type Vector2
Public methodSetValue(Vector3)
Specify the value of a generic vertex attribute or type Vector3
Public methodSetValue(Vector3)
Specify the value of a generic vertex attribute or type Vector3
Public methodSetValue(Vector4)
Specify the value of a generic vertex attribute or type Vector4
Public methodSetValue(Vector4)
Specify the value of a generic vertex attribute or type Vector4
Public methodSetValue(Single)
Specify the value of a generic vertex attribute
Public methodSetValue(Single, Single)
Specify the value of a generic vertex attribute
Public methodSetValue(Single, Single, Single)
Specify the value of a generic vertex attribute
Public methodSetValue(Single, Single, Single, Single)
Specify the value of a generic vertex attribute
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Remarks
These are variables marked with attribute in a vertex shader.
See Also