diff options
author | Jason Sams <jsams@google.com> | 2012-05-08 19:02:07 -0700 |
---|---|---|
committer | Jason Sams <jsams@google.com> | 2012-05-08 19:02:07 -0700 |
commit | d4ca9910982853e50429ea9233f2150ca619b3d8 (patch) | |
tree | 981cb82d5420c3ea0b3fb0f6bd18db1080bca0fd /graphics/java/android/renderscript/ProgramVertex.java | |
parent | e619de6a4e4326b7662b523ea2f403801291d432 (diff) | |
download | frameworks_base-d4ca9910982853e50429ea9233f2150ca619b3d8.zip frameworks_base-d4ca9910982853e50429ea9233f2150ca619b3d8.tar.gz frameworks_base-d4ca9910982853e50429ea9233f2150ca619b3d8.tar.bz2 |
GFX api cleanup 2 of 2
Change-Id: Ie928b8ee7d31fcaa26fcad9a2548581bb8395a61
Diffstat (limited to 'graphics/java/android/renderscript/ProgramVertex.java')
-rw-r--r-- | graphics/java/android/renderscript/ProgramVertex.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphics/java/android/renderscript/ProgramVertex.java b/graphics/java/android/renderscript/ProgramVertex.java index 74d666b..2bd5124 100644 --- a/graphics/java/android/renderscript/ProgramVertex.java +++ b/graphics/java/android/renderscript/ProgramVertex.java @@ -43,6 +43,7 @@ import android.util.Log; /** + * @deprecated in API 16 * ProgramVertex, also know as a vertex shader, describes a * stage in the graphics pipeline responsible for manipulating * geometric data in a user-defined way. @@ -55,6 +56,7 @@ public class ProgramVertex extends Program { } /** + * @deprecated in API 16 * @return number of input attribute elements */ public int getInputCount() { @@ -62,6 +64,7 @@ public class ProgramVertex extends Program { } /** + * @deprecated in API 16 * @param slot location of the input to return * @return input attribute element */ @@ -73,6 +76,7 @@ public class ProgramVertex extends Program { } /** + * @deprecated in API 16 * Builder class for creating ProgramVertex objects. * The builder starts empty and the user must minimally provide * the GLSL shader code, and the varying inputs. Constant, or @@ -82,6 +86,7 @@ public class ProgramVertex extends Program { **/ public static class Builder extends BaseProgramBuilder { /** + * @deprecated in API 16 * Create a builder object. * * @param rs Context to which the program will belong. @@ -91,6 +96,7 @@ public class ProgramVertex extends Program { } /** + * @deprecated in API 16 * Add varying inputs to the program * * @param e element describing the layout of the varying input @@ -110,6 +116,7 @@ public class ProgramVertex extends Program { } /** + * @deprecated in API 16 * Creates ProgramVertex from the current state of the builder * * @return ProgramVertex |