RenderScript is an Android-specific 3D graphics and compute API offered by Google. It offers portability between Android devices with performance similar to native OpenGL ES implementations.

learn more… | top users | synonyms

0
votes
1answer
36 views

Android Renderscript Strange Performance on Returning Difference Variable

I am writing an android renderscript program. It has a strange performance problem. The program has two parts: mix two images; add special effect to the mixed image. I tested part 1, and it takes ...
0
votes
0answers
17 views

My renderscript path is not seen

:2:10: fatal: 'rs_core.rsh' file not found I get the above error with the Android May 22 version when writing renderscripts. I tried to re-install the Android bundle but I keep getting this error. I ...
1
vote
1answer
55 views

Renderscript and the GPU

I know that Renderscript's design is to obscure the fact about what processor I'm running on, but is there any way to write the code such that on GPU-compute-capable devices (at the moment, Nexus 10), ...
0
votes
0answers
45 views

HelloCompute: where is the reflected layer?

New to Android. I'm trying to build the HelloCompute sample code for API 17 with ADT v22.0.1 under Windows 7. I do File:New Project:Android Sample Project, and select HelloCompute. In the Package ...
0
votes
1answer
23 views

Is there any way to check in RenderScrpt if an rs_allocation has been bound properly?

Whenever I define rs_allocation abcd; in my renderscript, I am afraid I will forget to bind it from Java, leading to cryptic issues. Is there any way to write if (abcd == NULL) ...
0
votes
1answer
149 views

llvm-rs-cc: error: unknown argument: '-target-api' in Android renderscript

I was building the JB Gallery app on eclipse. The entire thing was ok. However, the project folder shows a red cross beside it and doesn't compile. On looking into 'problems', it said llvm-rs-cc.exe ...
-2
votes
0answers
16 views

part of bitmap renderscript [closed]

I want to set a region of a Bitmap in Renderscript. Does anyone know how to do that? I was looking for some function inside the script to take a region from some allocation and I was not able to find ...
0
votes
1answer
118 views

Renderscript, forEach_root, and porting from OpenCL

1) How can I access in forEach_root() other elements except for the current one? In OpenCL we have pointer to the first element and then can use get_global_id(0) to get current index. But we can ...
0
votes
0answers
28 views

Android Renderscript:how to pass a Float3 array to the root function

I am a beginner of android Renderscript programming.I am trying to use it to deal with heavy computation. I hope I can pass a Float3 type array to the the root function as *data_in. However I didn't ...
0
votes
1answer
87 views

Android Renderscript for CPU computation

Firstly, I read that there's a possibility of using renderscript for compute task on nexus 10 at http://android-developers.blogspot.sg/2013/01/evolution-of-renderscript-performance.html I was ...
1
vote
0answers
52 views

Renderscript limitation size of array

I'm doing matrix multiplication in Renderscript. I have my java file which prepares all the arrays. In my Renderscript I have global variables which will be set by the java file. But I have seen there ...
2
votes
1answer
65 views

Does RenderScript support recursion?

OpenCL doesn't support recursion. CUDA does, but only from a certain version. Initial search indicated RenderScript does support recursion, but I couldn't find anything explicit. Does RenderScript ...
0
votes
2answers
82 views

how to present a 2d array in an 1d array with a size of height or width

I have the problem that I want to do parallelization with Android Renderscript. For this I have to allocate my input data to renderscript and allocate them back. I want to do big matrix ...
0
votes
1answer
48 views

Android Renderscript rotateLeft

How do I implement this Java function: public static int rotateLeft(int i, int distance) { // Shift distances are mod 32 (JLS3 15.19), so we needn't mask -distance return (i ...
1
vote
1answer
63 views

Renderscript multidimensional array

Is there a possibility to use two dimensional arrays in RenderScript for Android? Allocation only allows me to put a vector (1 dimensional) array into the allocation. But I have no idea how to ...
0
votes
1answer
60 views

Get computated values from Android RenderScript

I tried to make the source example from [1], because I want to exchange data from Java to Renderscript and vice versa using the data type "integer". Everything in this example is working fine, but I ...
1
vote
2answers
233 views

Renderscript conversion from ARGB8888 to RGB565

I'm receiving Bitmaps in ARGB8888 format, but I need to process it through some algorithm that only accepts RGB565. I want to convert this bitmap to the new format using Renderscript but it seems the ...
0
votes
1answer
51 views

Is it possible to use one allocation for a chain of renderscript actions?

For example I make an allocation from a bitmap, then aplly to it the brightnessContrastRs() and then some different filter with similar implementation on that allocation, changed by ...
0
votes
1answer
120 views

A lot of calls to renderscript produces error “Created fewer than expected number of RS threads”

I have an application with a spinner with lots of items and an image. Every time a user choises an item of the list, a number (1 to 5) of renderscript scripts are performed to change image's pixels. ...
0
votes
1answer
139 views

Renderscript is slow, is it ok?

I have two implimentations of image saturation filter. One with Java and one with Renderscript. Actually the renderscript is slower on my nexus 4 device, how can it be? Java implementation: public ...
0
votes
1answer
125 views

How to make fast operations on bitmaps in android

I need to make some operations on bitmaps in android, such as chanding pixel colors, transparency, painting another bitmap on the first one with transparency, zooming, croping, applying masks and so ...
0
votes
1answer
124 views

Renderscript - processing 2 images

Quickly going through the documentation I haven't found any obvious way of passing 2 images as inputs - has anyone done this or know if its possible with the current implementation? Cheers, Josh
1
vote
1answer
125 views

Generated renderscript files cause “Invalid unicode” error

I'm trying out some samples of Renderscript (currently I'm trying out the carousel sample). I keep getting a weird error in the gen folder which just says "Invalid Unicode" , and point at "\u" in ...
2
votes
1answer
125 views

How to share a Renderscript allocation with OpenGL in Android

I have a Renderscript which processes an image that is given in output to an Allocation. I want to use this Allocation as a texture in my OpenGL program but I don't know how to get a texture ID from ...
0
votes
0answers
124 views

RenderScript on API 8

How can I lower my apps' minimum sdk version to 8, when it uses RenderScript? Currently it supports the minimum android 3.0. I know it's possible, but I can't figure it out. The Grass Live Wallpaper ...
0
votes
0answers
87 views

How to access typed data from out Renderscript allocation?

I create typed RS allocations this way: mRS = RenderScript.create(mContext); Element.Builder eb = new Element.Builder(mRS); eb.add(Element.F32_3(mRS), "xyz"); eb.add(Element.F32_2(mRS), "uv"); ...
0
votes
0answers
52 views

Create your own colour library in android for use with renderscript

I would like to create my own colour library in order to apply some pixel processing using my own colours and not the default ones. For example when using the rsUnpackColor8888 I would like to define ...
0
votes
0answers
43 views

RenderScript : binding a texture to a mesh

I have recently start learning renderscript, and i can't i manage to make a simple thing: Dawing a mesh with rsgDrawMesh with a texture on it. just as i would do with opengl drawElements. I managed to ...
0
votes
1answer
45 views

An Allocation variable is set before it gains any data

After flipping throw the Grass Live Wallpaper, I have come around this bit of code - it creates the grass blade mesh and sets it indices: private void createMesh() { mVertexBuffer = new ...
0
votes
0answers
57 views

How to break on shared library load on android?

I am trying to play around with android RenderScript driver, and trying to step through the source code of the driver. I have been able to stop at a breakpoint I set and step through using gdbserver ...
1
vote
1answer
107 views

Determining whether Renderscript is running on CPU/GPU & Number of Threads

I can't seem to find any documentation on how to check if RenderScript is actually parallelizing code. I'd like to know whether the CPU or GPU is being utilized and the number of threads dispatched. ...
1
vote
1answer
179 views

Eclipse stops compiling RenderScript file

I have a single RenderScript (.rs) file in my Android project: SomeScript.rs Which has been working fine as I've been developing it. But then I did a workspace clean inside Eclipse, and now it ...
1
vote
1answer
97 views

Renderscript via the support library

Seems to me that android has an android.support.v8 package that contains Renderscript support. The thing is, this doesn't seem documented anywhere - the support library docs don't say anything about a ...
-2
votes
1answer
107 views

Example apps using Renderscript

I want to learn more about Renderscript. What are the apps out there that is using Renderscript? I want to see real apps in the market, instead of some tutorial examples.
0
votes
1answer
150 views

How to customize parameters used on renderscript root function?

Background I'm new to renderscript, and I would like to try some experiments with it (but small ones and not the complex ones we find in the SDK), so I thought of an exercise to try out, which is ...
2
votes
2answers
2k views

Why did Google choose RenderScript instead of OpenCL [closed]

I've been wondering if it was possible to use OpenCL for Android, find out that it wasn't possible, and dropped the subject altogether. But thanks to the blog post from january 14th on the official ...
1
vote
1answer
209 views

Wall carousel like youtube

I have to create a 3d wall carousel like you tube with varying number of rows(1,2 or 3). I got it using this example and modifying few variables. I have to change the cardVertices(given below) in ...
0
votes
1answer
299 views

Allocating big bitmap for renderscript (android)

I try to make simple image filter in android renderscript, and it does work for small images. However I get out of memory error for a picture as big as picture taken with camera for example ...
3
votes
3answers
509 views

Where is the filterscript documentation (and how can I use it)?

When Jelly Bean 4.2 was announced a month ago, Filterscript was also announced. It appears to be a language that is a subscript of Renderscript with a different file extension. And that's about all ...
0
votes
2answers
270 views

Cannot get simple renderscript maths function to run

I am trying to get a simple renderscript function to take two numnbers, add them and return the result, however I have not managed to find an example project to do that smoothly. I keep getting a ...
0
votes
0answers
279 views

How to tidy up a Surface and SurfaceTexture when used with RenderScript

I am using an android.view.Surface, an android.graphics.SurfaceTexture and the setSurface method of an Allocation to receive the results from some RenderScript and then use those results as a texture ...
1
vote
0answers
103 views

Android RenderScript doesn't show Textures

I have a problem with RenderScript. Textures I bind will be not shown on the Surface. I don't get any errors or relevant notes in LogCat or in Console. I use an WallPaperService.Engine. I Bind Bitmaps ...
0
votes
1answer
91 views

Decoding data in Java

I want to retrieve data from renderscript on ICS. I send the data from the script using: bool l_res = rsSendToClient(1, &data, sizeof(data)); rsDebug("rsSendToClient:", (l_res?"Ok":"Error")); ...
0
votes
1answer
72 views

How do I spot-optimize code for the Android platform?

I'm an iOS developer and I'm considering getting into Android development. In Objective-C, I'm used to being able to optimize and tune specific hotspots (e.g. image processing) using inline ...
1
vote
1answer
138 views

Get RenderScript Progress

I'm using the forEach_root method to compute an image on Android. RenderScript RS=RenderScript.create(context); Allocation inPixelsAllocation = Allocation.createFromBitmap(RS, inBitmap, ...
2
votes
1answer
312 views

Live wallpaper render script background image in android

I am a newbie for render script. I was going through the in the live wallpaper application. Now the problem is that I am not getting my background image(static background in the live wallpaper). I ...
1
vote
2answers
408 views

building renderscript for pre honeycomb

I have a project which targetVersion is 16 and I'm using SherlockActionBar and support-library for supporting down to API-level 8. I am trying to integrate CarouselView to my project. I am planning to ...
7
votes
1answer
849 views

Converting camera YUV-data to ARGB with renderscript

this is my first question here in stackoverflow. My Problem is: I've set up a camera in Android and receive the preview data by using an onPreviewFrame-listener which passes me an byte[] array ...
2
votes
2answers
199 views

Renderscript failing to export static variable

I am using Renderscript for Android. I just updated to Revision 21 of the tools. My project (that has been working for over a year) stopped compiling with this update. The project is based on the ...
0
votes
1answer
59 views

Are all renderscript methods API 11?

I am trying to use the float version of rsRand and I get an error for the call being ambiguous. I have a hunch that maybe the method is not API 11 though I am not sure. float test = rsRand(5);// okay ...

1 2 3