diff options
Diffstat (limited to 'libs/rs/rsElement.cpp')
-rw-r--r-- | libs/rs/rsElement.cpp | 6 |
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); |