Uses of Class
crystalspace.jbind.impl.csgfx.shadervar.csShaderVariableProxy

Packages that use csShaderVariableProxy
crystalspace.jbind.impl.csgfx.shadervar   
 

Uses of csShaderVariableProxy in crystalspace.jbind.impl.csgfx.shadervar
 

Methods in crystalspace.jbind.impl.csgfx.shadervar that return csShaderVariableProxy
 csShaderVariableProxy csShaderVariableProxyList.get(int n)
          Get an element.
 csShaderVariableProxy csShaderVariableProxyList.getExtend(int n)
          Get an item from the array.
 csShaderVariableProxy csShaderVariableProxyList.item(int n)
          Get an element.
 csShaderVariableProxy csShaderVariableProxyList.pop()
          Pop an element from tail end of array.
 csShaderVariableProxy csShaderVariableProxyList.top()
          Return the top element but do not remove it.
 

Methods in crystalspace.jbind.impl.csgfx.shadervar with parameters of type csShaderVariableProxy
 void csShaderVariableProxyList.setLength(int n, csShaderVariableProxy what)
          Set the actual number of items in this array.
 void csShaderVariableProxyList.put(int n, csShaderVariableProxy what)
          Put an element at some position.
 int csShaderVariableProxyList.push(csShaderVariableProxy what)
          Push an element onto the tail end of the array.
 boolean csShaderVariableProxyList.insert(int n, csShaderVariableProxy item)
          Insert element 'item' before element 'n'.
 int csShaderVariableProxyList.insertSorted(csShaderVariableProxy item)
          Insert an element at a sorted position, using a csShaderVariableProxyListCompareFunction.
 int csShaderVariableProxyList.insertSorted(csShaderVariableProxy item, int equal_index)
          Insert an element at a sorted position, using a csShaderVariableProxyListCompareFunction.
 int csShaderVariableProxyList.find(csShaderVariableProxy which)
          Find a element in array and return its index (or -1 if not found).
 boolean csShaderVariableProxyList.delete(csShaderVariableProxy item)
          Delete the given element from vector.