Uses of Class
com.neovisionaries.android.opengl.Program

Packages that use Program
com.neovisionaries.android.opengl   
 

Uses of Program in com.neovisionaries.android.opengl
 

Methods in com.neovisionaries.android.opengl that return Program
 Program Program.attach(Shader<?> shader)
          Attach a shader to this program.
 Program Program.detach(Shader<?> shader)
          Detach a shader from this program.
 Program Program.link()
          Link attached shaders.
 Program Program.setAttribute(String attributeName, Attribute attribute)
          Set an attribute.
 Program Program.use()
          Use this program.
 

Methods in com.neovisionaries.android.opengl with parameters of type Program
 float[] Uniform.get(Program program, float[] params)
          Get the value of a uniform variable.
 float[] Uniform.get(Program program, float[] params, int offset)
          Get the value of a uniform variable.
 FloatBuffer Uniform.get(Program program, FloatBuffer params)
          Get the value of a uniform variable.
 int[] Uniform.get(Program program, int[] params)
          Get the value of a uniform variable.
 int[] Uniform.get(Program program, int[] params, int offset)
          Get the value of a uniform variable.
 IntBuffer Uniform.get(Program program, IntBuffer params)
          Get the value of a uniform variable.
 

Constructors in com.neovisionaries.android.opengl with parameters of type Program
Sampler(Program program, String name)
          A constructor.
Uniform(Program program, String name)
          A constructor.