Page 1 of 1

opengl es question

PostPosted: Apr 15, 2005 @ 2:38pm
by Structure
Hi,


If I use opengl es 1.1 on hardware that only supports 1.0, are the extra 1.1 functions such as auto mipmap generation supported in software?

Actually probably more to the point can I even use 1.1 on say the dell x50 etc?

Re: opengl es question

PostPosted: Apr 15, 2005 @ 3:53pm
by hm

PostPosted: Apr 15, 2005 @ 4:12pm
by Structure

PostPosted: Apr 15, 2005 @ 4:36pm
by DaGGeR

PostPosted: Apr 15, 2005 @ 5:09pm
by Digby
If I had to guess, I'd say that Hybrid's driver is a software-only rasterizer and wouldn't take advantage of the 2700G in the Axim at all. You could ask on the OpenGL ES dev forum at khronos.org though. The Hybrid folks contribute to that list and could verify my assumption pretty quickly.

If all you want from 1.1 is auto-mipmap generation, can't you do this manually by rendering your level 0 texture to progressively smaller quads with bilinear filtering enabled, then save the contents of the color buffer as a texture map? You'd only have to do this once when the app/level loads so it doesn't have to be overly performant. I'm a D3DM guy so I don't know if you can even do this in OpenGL ES, but I'm sure there are some others here that could comment.

PostPosted: Apr 15, 2005 @ 6:02pm
by Structure
Right that would make sense if I bothered to think about it before posting, hybrid is not going to be making drivers for the various 3d chips that are going to become available, rather their software implementation can work consistently across all platforms

PostPosted: Apr 15, 2005 @ 6:47pm
by hm

PostPosted: Apr 15, 2005 @ 7:04pm
by Structure