summaryrefslogtreecommitdiff
path: root/libs/rs/rsElement.cpp
diff options
context:
space:
mode:
author Jason Sams <rjsams@android.com> 2011-05-06 14:14:30 -0700
committer Jason Sams <rjsams@android.com> 2011-05-06 14:30:52 -0700
commit7a22e107d100caea2a661ec73e4525d69f0f9759 (patch)
tree4dfaec5f2c40315ab05b8d93fb658fefc8e842ff /libs/rs/rsElement.cpp
parentc54ed966f78b9ee8117931859d62faa6f11fe018 (diff)
Add code for generating fifo command packing.
Change-Id: I2d2ef095344b200b10457de96ae1d85821edc91e
Diffstat (limited to 'libs/rs/rsElement.cpp')
-rw-r--r--libs/rs/rsElement.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/rs/rsElement.cpp b/libs/rs/rsElement.cpp
index d5d5ca5c9032..2b58e9eb0e03 100644
--- a/libs/rs/rsElement.cpp
+++ b/libs/rs/rsElement.cpp
@@ -347,13 +347,15 @@ RsElement rsi_ElementCreate(Context *rsc,
return (RsElement)e;
}
+
RsElement rsi_ElementCreate2(Context *rsc,
const RsElement * ein,
size_t ein_length,
+
const char ** names,
- size_t names_length,
- const size_t * nameLengths,
size_t nameLengths_length,
+ const size_t * nameLengths,
+
const uint32_t * arraySizes,
size_t arraySizes_length) {
const Element *e = Element::create(rsc, ein_length, (const Element **)ein, names, nameLengths, arraySizes);