java.lang.Object | ||
↳ | android.renderscript.BaseObj | |
↳ | android.renderscript.Program |
![]() |
![]() |
Program is a base class for all the objects that modify various stages of the graphics pipeline
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Program.BaseProgramBuilder | ||||||||||
|
Program.TextureType | TextureType specifies what textures are attached to Program objects |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Binds a constant buffer to be used as uniform inputs to the program
|
|||||||||
|
|
Binds an object that describes how a texture at the corresponding location is sampled
|
|||||||||
|
|
Binds a texture to be used in the program
|
|||||||||
|
|
Returns the type of the constant buffer used in the program object.
|
|||||||||
|
|
Program object can have zero or more constant allocations associated with it.
|
|||||||||
|
|
Returns the number of textures used in this program object
|
|||||||||
|
|
Returns the name of the texture input at a given slot.
|
|||||||||
|
|
Returns the type of texture at a given slot.
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
|||||||||||
![]() |
Binds a constant buffer to be used as uniform inputs to the program
a | allocation containing uniform data |
---|---|
slot | index within the program's list of constant buffer allocations |
Binds an object that describes how a texture at the corresponding location is sampled
vs | sampler for a corresponding texture |
---|---|
slot | index within the program's list of textures to use the sampler on |
IllegalArgumentException |
---|
Binds a texture to be used in the program
va | allocation containing texture data |
---|---|
slot | index within the program's list of textures |
IllegalArgumentException |
---|
Returns the type of the constant buffer used in the program object. It could be used to query internal elements or create an allocation to store constant data.
slot | index of the constant input type to return |
---|
Program object can have zero or more constant allocations associated with it. This method returns the total count.
Returns the number of textures used in this program object
Returns the name of the texture input at a given slot. e.g. tex0, diffuse, spec
slot | index of the texture input |
---|
Returns the type of texture at a given slot. e.g. 2D or Cube
slot | index of the texture input |
---|