summaryrefslogtreecommitdiffstats
path: root/scriptc
diff options
context:
space:
mode:
authorJason Sams <rjsams@android.com>2010-06-17 18:05:38 -0700
committerJason Sams <rjsams@android.com>2010-06-17 18:05:38 -0700
commitbdb046001675f949e7e9b2cd0bfd63a5889d97ed (patch)
tree845e0609493bbacde7077235298b9c8a079fd951 /scriptc
parent97589cbd2b844543f6c8a6bc336f4e11a67828fd (diff)
downloadandroid_frameworks_rs-bdb046001675f949e7e9b2cd0bfd63a5889d97ed.tar.gz
android_frameworks_rs-bdb046001675f949e7e9b2cd0bfd63a5889d97ed.tar.bz2
android_frameworks_rs-bdb046001675f949e7e9b2cd0bfd63a5889d97ed.zip
Remove legacy drawing functions.
Skip element names starting with '#' Change-Id: I6b0967ed1dc47c072c3bed7c0219e2215a7068a6
Diffstat (limited to 'scriptc')
-rw-r--r--scriptc/rs_graphics.rsh2
1 files changed, 0 insertions, 2 deletions
diff --git a/scriptc/rs_graphics.rsh b/scriptc/rs_graphics.rsh
index 6df2a565..c9667d03 100644
--- a/scriptc/rs_graphics.rsh
+++ b/scriptc/rs_graphics.rsh
@@ -29,8 +29,6 @@ extern void rsgDrawQuad(float x1, float y1, float z1, float x2, float y2, float
extern void rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, float x2, float y2, float z2, float u2, float v2, float x3, float y3, float z3, float u3, float v3, float x4, float y4, float z4, float u4, float v4);
//extern void rsgDrawSprite(float x, float y, float z, float w, float h);
extern void rsgDrawSpriteScreenspace(float x, float y, float z, float w, float h);
-extern void rsgDrawLine(float x1, float y1, float z1, float x2, float y2, float z2);
-extern void rsgDrawPoint(float x1, float y1, float z1);
extern void __attribute__((overloadable)) rsgDrawSimpleMesh(rs_mesh ism);
extern void __attribute__((overloadable)) rsgDrawSimpleMesh(rs_mesh ism, int start, int len);