diff options
author | Jason Sams <rjsams@android.com> | 2010-07-15 17:11:13 -0700 |
---|---|---|
committer | Jason Sams <rjsams@android.com> | 2010-07-15 17:11:13 -0700 |
commit | 8f8a5724bee0f958ef81a7154e4fd40fb6f07a49 (patch) | |
tree | 06ae96f235518c3ba85241523903f9be4c1b01cb /libs/rs/RenderScript.h | |
parent | 506821b406181ff9b9a10c2fc078d16b79a8cf92 (diff) | |
download | frameworks_base-8f8a5724bee0f958ef81a7154e4fd40fb6f07a49.zip frameworks_base-8f8a5724bee0f958ef81a7154e4fd40fb6f07a49.tar.gz frameworks_base-8f8a5724bee0f958ef81a7154e4fd40fb6f07a49.tar.bz2 |
1st cut of ForEach and test.
Change-Id: I6534569c8d26db8b9691666134a555c8bf94184e
Diffstat (limited to 'libs/rs/RenderScript.h')
-rw-r--r-- | libs/rs/RenderScript.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/rs/RenderScript.h b/libs/rs/RenderScript.h index 745df95..6636fef 100644 --- a/libs/rs/RenderScript.h +++ b/libs/rs/RenderScript.h @@ -255,6 +255,19 @@ typedef struct { const char* objectName; } RsFileIndexEntry; +// Script to Script +typedef struct { + uint32_t xStart; + uint32_t xEnd; + uint32_t yStart; + uint32_t yEnd; + uint32_t zStart; + uint32_t zEnd; + uint32_t arrayStart; + uint32_t arrayEnd; + +} RsScriptCall; + #ifndef NO_RS_FUNCS #include "rsgApiFuncDecl.h" #endif |