bitristan
bitristan

Reputation: 650

Android RenderScript relationship with OpenGL ES shading language

what's the relationship between RenderScript of Android and OpenGL Shading Language?

Upvotes: 2

Views: 328

Answers (1)

Stephen Hines
Stephen Hines

Reputation: 2622

There is no relationship between Renderscript and the OpenGL ES shading language. Renderscript is a C99-based language for accelerating compute workloads across a wide variety of devices. GL ES shader language is a restricted C-like language that is primarily used for graphics.

Upvotes: 2

Related Questions