Questions tagged [renderscript]

RenderScript is an Android-specific compute API offered by Google. It offers accelerated compute performance with portability between Android devices.

RenderScript is an Android compute API offered by Google. It offers accelerated compute performance with portability between Android devices.

The RenderScript runtime operates as an asynchronous low-level interface to the traditional Android application controlling it. Memory allocation and binding is performed by the controlling Android application, with both the application and runtime environment able to read and write the memory asynchronously.

For graphics operations, RenderScript is essentially a wrapper for the OpenGL ES 2.0 API's, guaranteed to run on all Android devices supporting an API level of 11 (3.0) or higher. It allows for the use of OpenGL ES 2.0's programmable pipeline while providing easy support for a fixed function pipeline if desired.

Documentation for RenderScript is currently very limited, however the example applications included in

sdk_root/samples/android-11/RenderScript

provide a great deal in the way of examples demonstrating the capabilities of RenderScript.

Some links of interest for RenderScript are:

727 questions
-1
votes
2 answers

How to create a live wallpaper for android

I know there's a lot of information about creating a live wallpaper with renderscript, but I thought I read somewhere that this way of doing things would be deprecated. I don't know if I just imagined that or not, but I don't want to start learning…
travis
  • 159
  • 3
  • 14
-1
votes
2 answers

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.
dacongy
  • 2,504
  • 3
  • 30
  • 48
-1
votes
2 answers

Why RenderScript 4.0 sample like "Balls" in eclipse do not generate the ScriptC_balls.java (s)?

I run the RenderScript 4.0 sample like "Balls" in eclipse, but the project do not generate the ScriptC_balls.java (s) My ADT is 18,sdk is 15(4.0.3)
-2
votes
1 answer

renderscript sample run on gpu

I'm wondering if anybody has developed a Renderscript Program that runs on GPU. I've tried some simple implementations, like doing IntrinsicBlur via RS but it turned out that it runs on CPU rather than GPU.
PKUEcho
  • 51
  • 5
-2
votes
1 answer

Android image animation

i am trying to implement an animated butterfly which should fly around the screen by clicking a button .How can i implement it efficiently.If i need multiple butterflies(may be 100+) whether it effect device performance?.How can i achieve fly effect…
Askarc Ali
  • 318
  • 4
  • 21
-4
votes
1 answer

Performs array calculations using the GPU android

I need to process elements in large array and due to performance issues i need to do this in GPU of android device. please give a idea to implement this.
droidNDK
  • 85
  • 1
  • 9
-4
votes
1 answer

Clean image before OCR?

Before After I found a spectacular example demonstrate how to clear image before OCR, I think much about it and try to analyze it, It was awesome. Compare with original image , the processed image has : Remove background and unrelated…
Tai Tran
  • 1,406
  • 3
  • 15
  • 27
1 2 3
48
49