Thread Closed 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
power vr
02-22-2013, 12:11 AM (This post was last modified: 02-22-2013 12:12 AM by stodag.)
Post: #16
RE: power vr
does powervr sgx530 support opengl 2.0?

its the same gpu as ipod touch 2nd gen and iphone 3g ?
Find all posts by this user
02-22-2013, 01:13 AM (This post was last modified: 02-22-2013 01:28 AM by xsacha.)
Post: #17
RE: power vr
(02-22-2013 12:11 AM)stodag Wrote:  does powervr sgx530 support opengl 2.0? its the same gpu as ipod touch 2nd gen and iphone 3g ?

Code:
iPhone                                         | PowerVR GPU  | Playability

iPhone 3G,  iPod Touch 2nd gen and earlier.    | MBX Lite     | Not possible, no OpenGL ES 2.0
iPhone 3GS, iPhone 4                           | SGX 535      | Very slow
iPhone 4S,  iPhone 5                           | SGX543MP     | Fast

SGX 530 does support OpenGL ES 2.0. It's one of the slowest GPUs that do though. No, the 3G has an ancient GPU that isn't much good for anything.
Find all posts by this user
02-22-2013, 11:46 AM
Post: #18
RE: power vr
(02-22-2013 01:13 AM)xsacha Wrote:  
(02-22-2013 12:11 AM)stodag Wrote:  does powervr sgx530 support opengl 2.0? its the same gpu as ipod touch 2nd gen and iphone 3g ?

Code:
iPhone                                         | PowerVR GPU  | Playability

iPhone 3G,  iPod Touch 2nd gen and earlier.    | MBX Lite     | Not possible, no OpenGL ES 2.0
iPhone 3GS, iPhone 4                           | SGX 535      | Very slow
iPhone 4S,  iPhone 5                           | SGX543MP     | Fast

SGX 530 does support OpenGL ES 2.0. It's one of the slowest GPUs that do though. No, the 3G has an ancient GPU that isn't much good for anything.

What about ipod touch 4g?
Find all posts by this user
02-23-2013, 02:44 AM (This post was last modified: 02-23-2013 02:44 AM by xsacha.)
Post: #19
RE: power vr
I didn't list iPod Touch because they have the same hardware as iPhone of that generation.

So iPod Touch 4th generation = iPhone 4 = PowerVR SGX 535 = Very slow.
Find all posts by this user
02-23-2013, 09:18 AM
Post: #20
RE: power vr
(02-23-2013 02:44 AM)xsacha Wrote:  I didn't list iPod Touch because they have the same hardware as iPhone of that generation.

So iPod Touch 4th generation = iPhone 4 = PowerVR SGX 535 = Very slow.

Ohh ok,thanks:-)
Find all posts by this user
02-23-2013, 01:33 PM (This post was last modified: 02-23-2013 01:34 PM by stodag.)
Post: #21
RE: power vr
yep mines power vr sgx530 ? not 535

galaxy scl

i think its the same as iphone 3g thats why i asked if it suppoerted opengl 2.0
Find all posts by this user
02-23-2013, 02:13 PM
Post: #22
RE: power vr
(02-23-2013 01:33 PM)stodag Wrote:  yep mines power vr sgx530 ? not 535

galaxy scl

i think its the same as iphone 3g thats why i asked if it suppoerted opengl 2.0
SGX530 better than MBX Lite, and yes, it support Open GL 2.0

Sony Xperia TX
Find all posts by this user
02-23-2013, 02:48 PM
Post: #23
RE: power vr
ok thxSmile
Find all posts by this user
02-24-2013, 09:29 AM
Post: #24
RE: power vr
(02-23-2013 02:48 PM)stodag Wrote:  ok thxSmile

Yeah your GPU is much faster than you thought Tongue It's actually similar to iPhone 3GS/4.
Find all posts by this user
02-25-2013, 11:50 AM
Post: #25
RE: power vr
i cant wait till we are at the point where any iso is playable like fpseSmile maybe another year or two....
Find all posts by this user
03-10-2013, 10:25 PM (This post was last modified: 03-10-2013 10:26 PM by Carter07.)
Post: #26
RE: power vr
Good news for powervr users!

I found a huge bottleneck that affects tiled renderers (but also others gpus like adreno but in a minor way), if removed performance literally doubles in all games I tried! (tested with unbuffered rendering), Lumines for example went from 24 to 60 fps with my sgx540. Smile

I'll send a pull request if I manage to make it work better, I have also to test it more.
Find all posts by this user
03-10-2013, 10:26 PM
Post: #27
RE: power vr
Ooh, what is it?
Find all posts by this user
03-10-2013, 10:38 PM (This post was last modified: 03-10-2013 10:55 PM by Carter07.)
Post: #28
RE: power vr
Basically tiled renderes don't like using alpha test/discard, I tried disabling this function in the FragmentShaderGenerator and found that perf more than doubled in gpu limited games! (almost all are with unbuffered rendering)

Now the key (if possible) is using Alpha Blend Mode instead, setting the value to '0' where discard should be used.
Hope it can, or this can be used as an option (hack for slow gpu). Smile

Ps: I attached an example of typical perf boost in sgx540, also in adreno 205 I found perf increased but not that much, for example from 40 to 55 fps (with unbuffered rend as well).


Attached File(s) Thumbnail(s)
       
Find all posts by this user
03-10-2013, 11:35 PM
Post: #29
RE: power vr
Ah, interesting Smile I'm sure the problem is that PSP games forget to disable alpha test and draw lots of solid geometry with it on, as on PSP it doesn't cost anything, while it hurts us badly on PVR. So if we can detect for example when games are using fully opaque textures and no alpha in vertices, then we can disable the alpha test for that drawing. And maybe we can do more specific hacks for some games. It will be complicated but likely worth it for many mobile GPUs.
Find all posts by this user
03-10-2013, 11:42 PM
Post: #30
RE: power vr
(03-10-2013 11:35 PM)Henrik Wrote:  Ah, interesting Smile I'm sure the problem is that PSP games forget to disable alpha test and draw lots of solid geometry with it on, as on PSP it doesn't cost anything, while it hurts us badly on PVR. So if we can detect for example when games are using fully opaque textures and no alpha in vertices, then we can disable the alpha test for that drawing. And maybe we can do more specific hacks for some games. It will be complicated but likely worth it for many mobile GPUs.

Could that possibly be the problem with unusually slowed-down games like God of War?
Find all posts by this user
Thread Closed 


Forum Jump: