You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers. No questions about C++ programming or topics which are answered in the tutorials!
can anybody help me to make antialising work on OGLES1 branch,
I render few 2D images usoing rotation and scale and seems that the antialising doesn't work even I set the required flags. Tha
I don't have any screenshots ,I'll make few monday, but I'm sure that the antialising is the problem and think this issue is only for 2D rendering,I saw they reset many settings when switching to 2D render mode.tha
You seem to use an altered Irrlicht verson. At least we usually reset the transformation matrix in 2d rendering, so it wouldn't help anything here. Moreover, using anti-aliasing requires the device to support anti-aliasing upon creation already. Make sure you use the proper flags and check if anti-aliasing is enabled. Not sure if 2d material is supported in ogl-es. Try to check those settings in 3d rendering with usualy materials first.
- I use a irrlicht ogles version altered just a bit to allow matrix transforms on 2D(I post on forum those small changes also)
- Iphone/ipad supports anti-aliasing and also I set Antialising true when create the IrrlichtDevice
- if 2D material is not supported for ogles then I made a very bad choice using irrlicht as start point for my application,but I can't believe that is true.
- I'll try to see if it works for 3d rendering,thanks
The thing is that changes to the OpenGL driver will only slowly merge into the ogl-es driver. Since the two drivers are closely related, but don't derive from each other, some code mergaing has to happen. And since the branch has only low priority, these merges are only happening very seldomly. So you won't see all new features of Irrlicht in the branches (i.e. ogl-es) immediately. Which does not mean that they won't appear in the future. You can even submit patches to get a faster update of the branch. But hey, that's up to you.
Below the updated code for setRenderStatesMode() to have AA functional on 2d image rendering, this is a copy/paste sample from opengl driver that works fine for opengles.