diff options
author | Miao Wang <miaowang@google.com> | 2015-08-20 15:52:21 -0700 |
---|---|---|
committer | Miao Wang <miaowang@google.com> | 2015-08-20 15:52:21 -0700 |
commit | cd72e3840f176f3b35952b4b8164182187fdb29a (patch) | |
tree | 1fe41807e825aa85af60689266249c58d27ddcad /renderscript | |
parent | 1ac35abb30c297be85203e8bafb52777fd96b63a (diff) | |
download | prebuilts_sdk-cd72e3840f176f3b35952b4b8164182187fdb29a.zip prebuilts_sdk-cd72e3840f176f3b35952b4b8164182187fdb29a.tar.gz prebuilts_sdk-cd72e3840f176f3b35952b4b8164182187fdb29a.tar.bz2 |
Update RenderScript prebuilts for build-tools 23.0.1
Change-Id: I5de6c7e5f77a6be00fb21a7dba98438107cea8f8
Diffstat (limited to 'renderscript')
-rw-r--r-- | renderscript/include/rs_for_each.rsh | 42 | ||||
-rwxr-xr-x | renderscript/lib/arm/libRSSupport.so | bin | 764036 -> 764036 bytes | |||
-rwxr-xr-x | renderscript/lib/arm/libRSSupportIO.so | bin | 13604 -> 13604 bytes | |||
-rw-r--r-- | renderscript/lib/arm/libblasV8.so | bin | 1103412 -> 1103412 bytes | |||
-rwxr-xr-x | renderscript/lib/arm/libc.so | bin | 664120 -> 664004 bytes | |||
-rw-r--r-- | renderscript/lib/arm/libcompiler_rt.a | bin | 468202 -> 466434 bytes | |||
-rwxr-xr-x | renderscript/lib/arm/libm.so | bin | 132780 -> 132780 bytes | |||
-rwxr-xr-x | renderscript/lib/arm/librsjni.so | bin | 43428 -> 43428 bytes | |||
-rwxr-xr-x | renderscript/lib/arm64/libRSSupport.so | bin | 859176 -> 863272 bytes | |||
-rwxr-xr-x | renderscript/lib/arm64/libRSSupportIO.so | bin | 5656 -> 5656 bytes | |||
-rw-r--r-- | renderscript/lib/arm64/libblasV8.so | bin | 1382280 -> 1382280 bytes | |||
-rwxr-xr-x | renderscript/lib/arm64/libc.so | bin | 1032520 -> 1032384 bytes | |||
-rw-r--r-- | renderscript/lib/arm64/libcompiler_rt.a | bin | 888088 -> 886488 bytes | |||
-rwxr-xr-x | renderscript/lib/arm64/libm.so | bin | 235632 -> 235632 bytes | |||
-rwxr-xr-x | renderscript/lib/arm64/librsjni.so | bin | 52944 -> 52944 bytes | |||
-rw-r--r-- | renderscript/lib/javalib.jar | bin | 173071 -> 153786 bytes | |||
-rwxr-xr-x | renderscript/lib/mips/libRSSupport.so | bin | 1075944 -> 1075944 bytes | |||
-rwxr-xr-x | renderscript/lib/mips/libRSSupportIO.so | bin | 5312 -> 5312 bytes | |||
-rw-r--r-- | renderscript/lib/mips/libblasV8.so | bin | 1521028 -> 1521028 bytes | |||
-rwxr-xr-x | renderscript/lib/mips/libc.so | bin | 1083500 -> 1083428 bytes | |||
-rw-r--r-- | renderscript/lib/mips/libcompiler_rt.a | bin | 495662 -> 494114 bytes | |||
-rwxr-xr-x | renderscript/lib/mips/libm.so | bin | 215084 -> 215084 bytes | |||
-rwxr-xr-x | renderscript/lib/mips/librsjni.so | bin | 72028 -> 72028 bytes | |||
-rwxr-xr-x | renderscript/lib/x86/libRSSupport.so | bin | 981004 -> 981004 bytes | |||
-rwxr-xr-x | renderscript/lib/x86/libRSSupportIO.so | bin | 5252 -> 5252 bytes | |||
-rw-r--r-- | renderscript/lib/x86/libblasV8.so | bin | 1693116 -> 1693116 bytes | |||
-rwxr-xr-x | renderscript/lib/x86/libc.so | bin | 1144648 -> 1144572 bytes | |||
-rw-r--r-- | renderscript/lib/x86/libcompiler_rt.a | bin | 471542 -> 469966 bytes | |||
-rwxr-xr-x | renderscript/lib/x86/libm.so | bin | 235060 -> 235060 bytes | |||
-rwxr-xr-x | renderscript/lib/x86/librsjni.so | bin | 51500 -> 51500 bytes |
30 files changed, 21 insertions, 21 deletions
diff --git a/renderscript/include/rs_for_each.rsh b/renderscript/include/rs_for_each.rsh index 1bbcf9f..9507c0c 100644 --- a/renderscript/include/rs_for_each.rsh +++ b/renderscript/include/rs_for_each.rsh @@ -57,8 +57,8 @@ typedef enum rs_for_each_strategy { * A kernel may be executed in parallel over multiple threads. Each thread will have its * own context. * - * You can access the context by adding a rs_kernel_context argument to your kernel - * function. See rsGetDimX() and rsGetArray0() for examples. + * You can access the context by adding a special parameter named "context" and of type + * rs_kernel_context to your kernel function. See rsGetDimX() and rsGetArray0() for examples. */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) typedef const struct rs_kernel_context_t * rs_kernel_context; @@ -161,8 +161,8 @@ extern void __attribute__((overloadable)) * It contains common characteristics of the allocations being iterated over and rarely * used indexes, like the Array0 index. * - * You can access the context by adding a rs_kernel_context argument to your kernel - * function. E.g. + * You can access the context by adding a special parameter named "context" and of + * type rs_kernel_context to your kernel function. E.g. * short RS_KERNEL myKernel(short value, uint32_t x, rs_kernel_context context) { * // The current index in the common x, y, z, w dimensions are accessed by * // adding these variables as arguments. For the more rarely used indexes @@ -175,7 +175,7 @@ extern void __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetArray0(rs_kernel_context ctxt); + rsGetArray0(rs_kernel_context context); #endif /* @@ -188,7 +188,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetArray1(rs_kernel_context ctxt); + rsGetArray1(rs_kernel_context context); #endif /* @@ -202,7 +202,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetArray2(rs_kernel_context ctxt); + rsGetArray2(rs_kernel_context context); #endif /* @@ -215,7 +215,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetArray3(rs_kernel_context ctxt); + rsGetArray3(rs_kernel_context context); #endif /* @@ -228,7 +228,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimArray0(rs_kernel_context ctxt); + rsGetDimArray0(rs_kernel_context context); #endif /* @@ -241,7 +241,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimArray1(rs_kernel_context ctxt); + rsGetDimArray1(rs_kernel_context context); #endif /* @@ -254,7 +254,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimArray2(rs_kernel_context ctxt); + rsGetDimArray2(rs_kernel_context context); #endif /* @@ -267,7 +267,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimArray3(rs_kernel_context ctxt); + rsGetDimArray3(rs_kernel_context context); #endif /* @@ -283,7 +283,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern bool __attribute__((overloadable)) - rsGetDimHasFaces(rs_kernel_context ctxt); + rsGetDimHasFaces(rs_kernel_context context); #endif /* @@ -299,7 +299,7 @@ extern bool __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimLod(rs_kernel_context ctxt); + rsGetDimLod(rs_kernel_context context); #endif /* @@ -311,8 +311,8 @@ extern uint32_t __attribute__((overloadable)) * characteristics of the allocations being iterated over by the kernel in * a very efficient structure. It also contains rarely used indexes. * - * You can access it by adding a rs_kernel_context argument to your kernel - * function. E.g. + * You can access it by adding a special parameter named "context" and of + * type rs_kernel_context to your kernel function. E.g. * int4 RS_KERNEL myKernel(int4 value, rs_kernel_context context) { * uint32_t size = rsGetDimX(context); //... * @@ -320,7 +320,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimX(rs_kernel_context ctxt); + rsGetDimX(rs_kernel_context context); #endif /* @@ -335,7 +335,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimY(rs_kernel_context ctxt); + rsGetDimY(rs_kernel_context context); #endif /* @@ -350,7 +350,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetDimZ(rs_kernel_context ctxt); + rsGetDimZ(rs_kernel_context context); #endif /* @@ -364,7 +364,7 @@ extern uint32_t __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern rs_allocation_cubemap_face __attribute__((overloadable)) - rsGetFace(rs_kernel_context ctxt); + rsGetFace(rs_kernel_context context); #endif /* @@ -378,7 +378,7 @@ extern rs_allocation_cubemap_face __attribute__((overloadable)) */ #if (defined(RS_VERSION) && (RS_VERSION >= 23)) extern uint32_t __attribute__((overloadable)) - rsGetLod(rs_kernel_context ctxt); + rsGetLod(rs_kernel_context context); #endif #endif // RENDERSCRIPT_RS_FOR_EACH_RSH diff --git a/renderscript/lib/arm/libRSSupport.so b/renderscript/lib/arm/libRSSupport.so Binary files differindex c6573ba..bfb268d 100755 --- a/renderscript/lib/arm/libRSSupport.so +++ b/renderscript/lib/arm/libRSSupport.so diff --git a/renderscript/lib/arm/libRSSupportIO.so b/renderscript/lib/arm/libRSSupportIO.so Binary files differindex b02cf8a..6b0ee5c 100755 --- a/renderscript/lib/arm/libRSSupportIO.so +++ b/renderscript/lib/arm/libRSSupportIO.so diff --git a/renderscript/lib/arm/libblasV8.so b/renderscript/lib/arm/libblasV8.so Binary files differindex f892069..ddfae57 100644 --- a/renderscript/lib/arm/libblasV8.so +++ b/renderscript/lib/arm/libblasV8.so diff --git a/renderscript/lib/arm/libc.so b/renderscript/lib/arm/libc.so Binary files differindex d7c1026..b07b315 100755 --- a/renderscript/lib/arm/libc.so +++ b/renderscript/lib/arm/libc.so diff --git a/renderscript/lib/arm/libcompiler_rt.a b/renderscript/lib/arm/libcompiler_rt.a Binary files differindex d1c63c9..79a5761 100644 --- a/renderscript/lib/arm/libcompiler_rt.a +++ b/renderscript/lib/arm/libcompiler_rt.a diff --git a/renderscript/lib/arm/libm.so b/renderscript/lib/arm/libm.so Binary files differindex 2f75369..9e8ece9 100755 --- a/renderscript/lib/arm/libm.so +++ b/renderscript/lib/arm/libm.so diff --git a/renderscript/lib/arm/librsjni.so b/renderscript/lib/arm/librsjni.so Binary files differindex 6a1e95a..7100dd0 100755 --- a/renderscript/lib/arm/librsjni.so +++ b/renderscript/lib/arm/librsjni.so diff --git a/renderscript/lib/arm64/libRSSupport.so b/renderscript/lib/arm64/libRSSupport.so Binary files differindex 4d2e134..510228f 100755 --- a/renderscript/lib/arm64/libRSSupport.so +++ b/renderscript/lib/arm64/libRSSupport.so diff --git a/renderscript/lib/arm64/libRSSupportIO.so b/renderscript/lib/arm64/libRSSupportIO.so Binary files differindex bed9710..1d05755 100755 --- a/renderscript/lib/arm64/libRSSupportIO.so +++ b/renderscript/lib/arm64/libRSSupportIO.so diff --git a/renderscript/lib/arm64/libblasV8.so b/renderscript/lib/arm64/libblasV8.so Binary files differindex f32eb20..76505bf 100644 --- a/renderscript/lib/arm64/libblasV8.so +++ b/renderscript/lib/arm64/libblasV8.so diff --git a/renderscript/lib/arm64/libc.so b/renderscript/lib/arm64/libc.so Binary files differindex 14c5449..72ed27f 100755 --- a/renderscript/lib/arm64/libc.so +++ b/renderscript/lib/arm64/libc.so diff --git a/renderscript/lib/arm64/libcompiler_rt.a b/renderscript/lib/arm64/libcompiler_rt.a Binary files differindex 07148a9..8dcfe8c 100644 --- a/renderscript/lib/arm64/libcompiler_rt.a +++ b/renderscript/lib/arm64/libcompiler_rt.a diff --git a/renderscript/lib/arm64/libm.so b/renderscript/lib/arm64/libm.so Binary files differindex 3c6897e..7866a42 100755 --- a/renderscript/lib/arm64/libm.so +++ b/renderscript/lib/arm64/libm.so diff --git a/renderscript/lib/arm64/librsjni.so b/renderscript/lib/arm64/librsjni.so Binary files differindex c63fa06..d353888 100755 --- a/renderscript/lib/arm64/librsjni.so +++ b/renderscript/lib/arm64/librsjni.so diff --git a/renderscript/lib/javalib.jar b/renderscript/lib/javalib.jar Binary files differindex a73ef8e..8f4ef8d 100644 --- a/renderscript/lib/javalib.jar +++ b/renderscript/lib/javalib.jar diff --git a/renderscript/lib/mips/libRSSupport.so b/renderscript/lib/mips/libRSSupport.so Binary files differindex b76c39f..e13e354 100755 --- a/renderscript/lib/mips/libRSSupport.so +++ b/renderscript/lib/mips/libRSSupport.so diff --git a/renderscript/lib/mips/libRSSupportIO.so b/renderscript/lib/mips/libRSSupportIO.so Binary files differindex f1ad47a..0f1dbdf 100755 --- a/renderscript/lib/mips/libRSSupportIO.so +++ b/renderscript/lib/mips/libRSSupportIO.so diff --git a/renderscript/lib/mips/libblasV8.so b/renderscript/lib/mips/libblasV8.so Binary files differindex 5fcb585..f170db8 100644 --- a/renderscript/lib/mips/libblasV8.so +++ b/renderscript/lib/mips/libblasV8.so diff --git a/renderscript/lib/mips/libc.so b/renderscript/lib/mips/libc.so Binary files differindex 69e574f..5d44437 100755 --- a/renderscript/lib/mips/libc.so +++ b/renderscript/lib/mips/libc.so diff --git a/renderscript/lib/mips/libcompiler_rt.a b/renderscript/lib/mips/libcompiler_rt.a Binary files differindex 337ca15..d4994a9 100644 --- a/renderscript/lib/mips/libcompiler_rt.a +++ b/renderscript/lib/mips/libcompiler_rt.a diff --git a/renderscript/lib/mips/libm.so b/renderscript/lib/mips/libm.so Binary files differindex d33f7f1..f2d12d1 100755 --- a/renderscript/lib/mips/libm.so +++ b/renderscript/lib/mips/libm.so diff --git a/renderscript/lib/mips/librsjni.so b/renderscript/lib/mips/librsjni.so Binary files differindex 71723eb..278cbb2 100755 --- a/renderscript/lib/mips/librsjni.so +++ b/renderscript/lib/mips/librsjni.so diff --git a/renderscript/lib/x86/libRSSupport.so b/renderscript/lib/x86/libRSSupport.so Binary files differindex 818f176..da58775 100755 --- a/renderscript/lib/x86/libRSSupport.so +++ b/renderscript/lib/x86/libRSSupport.so diff --git a/renderscript/lib/x86/libRSSupportIO.so b/renderscript/lib/x86/libRSSupportIO.so Binary files differindex 8bd6d79..96075a3 100755 --- a/renderscript/lib/x86/libRSSupportIO.so +++ b/renderscript/lib/x86/libRSSupportIO.so diff --git a/renderscript/lib/x86/libblasV8.so b/renderscript/lib/x86/libblasV8.so Binary files differindex 09c8c50..c004d1f 100644 --- a/renderscript/lib/x86/libblasV8.so +++ b/renderscript/lib/x86/libblasV8.so diff --git a/renderscript/lib/x86/libc.so b/renderscript/lib/x86/libc.so Binary files differindex 32dd59d..bdf4744 100755 --- a/renderscript/lib/x86/libc.so +++ b/renderscript/lib/x86/libc.so diff --git a/renderscript/lib/x86/libcompiler_rt.a b/renderscript/lib/x86/libcompiler_rt.a Binary files differindex 3773709..1b5a42f 100644 --- a/renderscript/lib/x86/libcompiler_rt.a +++ b/renderscript/lib/x86/libcompiler_rt.a diff --git a/renderscript/lib/x86/libm.so b/renderscript/lib/x86/libm.so Binary files differindex c529738..b0c2071 100755 --- a/renderscript/lib/x86/libm.so +++ b/renderscript/lib/x86/libm.so diff --git a/renderscript/lib/x86/librsjni.so b/renderscript/lib/x86/librsjni.so Binary files differindex 0822d1f..0789b35 100755 --- a/renderscript/lib/x86/librsjni.so +++ b/renderscript/lib/x86/librsjni.so |