RenderStack 11.06.1
Public Member Functions | Properties
RenderStack.Graphics.AttributeBinding Class Reference

Contains information necessary to feed uniform data to GL. More...

List of all members.

Public Member Functions

 AttributeBinding (int index, int size, VertexAttribPointerType type, bool normalized, int stride, int offset)

Properties

int Index [get, set]
int Size [get, set]
VertexAttribPointerType Type [get, set]
bool Normalized [get, set]
int Stride [get, set]
int Offset [get, set]

Detailed Description

Note:
Mostly stable.

Definition at line 41 of file AttributeBindings.cs.


Constructor & Destructor Documentation

RenderStack.Graphics.AttributeBinding.AttributeBinding ( int  index,
int  size,
VertexAttribPointerType  type,
bool  normalized,
int  stride,
int  offset 
)

Definition at line 50 of file AttributeBindings.cs.

        {
            Index      = index;
            Size       = size;
            Type       = type;
            Normalized = normalized;
            Stride     = stride;
            Offset     = offset;
        }

Property Documentation

int RenderStack.Graphics.AttributeBinding.Index [get, set]

Definition at line 43 of file AttributeBindings.cs.

Referenced by RenderStack.Graphics.AttributeBindings.Apply().

int RenderStack.Graphics.AttributeBinding.Size [get, set]

Definition at line 44 of file AttributeBindings.cs.

Referenced by RenderStack.Graphics.AttributeBindings.Apply().

VertexAttribPointerType RenderStack.Graphics.AttributeBinding.Type [get, set]

Definition at line 45 of file AttributeBindings.cs.

Referenced by RenderStack.Graphics.AttributeBindings.Apply().

bool RenderStack.Graphics.AttributeBinding.Normalized [get, set]

Definition at line 46 of file AttributeBindings.cs.

Referenced by RenderStack.Graphics.AttributeBindings.Apply().

int RenderStack.Graphics.AttributeBinding.Stride [get, set]

Definition at line 47 of file AttributeBindings.cs.

Referenced by RenderStack.Graphics.AttributeBindings.Apply().

int RenderStack.Graphics.AttributeBinding.Offset [get, set]

Definition at line 48 of file AttributeBindings.cs.

Referenced by RenderStack.Graphics.AttributeBindings.Apply().


The documentation for this class was generated from the following file: