vote up 5 vote down star

Apparently, in Flash 10, you can use the GPU to calculate shaders, and if the user doesn't have a compatible gpu, it falls back to the cpu. The problem is that the cpu is very slow to calculate the filters, it would be nice to detect if it can't use the gpu, and use fewer effects. Is it possible to detect using actionscript if it's using gpu rendering?

flag

73% accept rate

6 Answers

vote up 1 vote down check

To detect GPU acceleration you can read the wmodeGPU stage property.

link|flag
vote up 2 vote down

If by shaders you mean things you compile with the pixel bender toolkit, they don't run on the GPU. See:

http://www.kaourantin.net/2008/05/adobe-pixel-bender-in-flash-player-10.html

link|flag
vote up 1 vote down

In ActionScript 3 there is the Capabilities class. Maybe you find there what you're looking for.

link|flag
vote up 3 vote down

Why not measure the time it takes to do something, and if it took too long, you disable some effects.

link|flag
This seems the most reasonable suggestion: do performance testing and gracefully degrade features to keep frame rates up. – Godeke Feb 12 at 21:32
vote up 1 vote down

Adobe relies on OpenGL in non-windows platforms to use hardware acceleration and there is no such distinction in OpenGL. To maintain consistency accross platforms (which is one of the strengths of Flash) it is desirable behaviour.

link|flag
vote up 1 vote down

As far as I know there is no API for this, I think that's why Adobe recommends limiting its use to 1 SWF per HTML page and discourages its use in banners, etc. since it can be very expensive for CPU / memory.

I guess a graceful workaround is to let your users choose.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.