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

Packages that use ShaderType
com.neovisionaries.android.opengl   
 

Uses of ShaderType in com.neovisionaries.android.opengl
 

Methods in com.neovisionaries.android.opengl that return ShaderType
static ShaderType ShaderType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ShaderType[] ShaderType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in com.neovisionaries.android.opengl with parameters of type ShaderType
Shader(ShaderType type)
          A constructor with a shader type.
Shader(ShaderType type, File file)
          A constructor with a shader type and a shader source file.
Shader(ShaderType type, InputStream in)
          This constructor is an alias of Shader(type, in, false).
Shader(ShaderType type, InputStream in, boolean close)
          A constructor with a shader type and an input stream from which a shader source should be read.
Shader(ShaderType type, String source)
          A constructor with a shader type and a shader source.