Hi,
I'm currently trying to implement some reflections on objects (dynamic objects, and also water). For the dynamic objects I'd like to render a cubemap so I was wondering if there any support planned for dynamic cubemaps? I've had a brief look into it and it doesn't look like it would take too much to add it but I just wanted to check I'm on the right track.
- Create 6 pipeline xmls - one for each camera required to render the cubemap. Presumably there would be some additions to Horde here to configure the rendertarget to be a face in a cubemap. I'm fairly new to openGL so I'm thinking in terms of DirectX until I actually look into how rendering to a cubemap actually works in openGL.
- At runtime, before the main scene is rendered, set the cameras up appropriately and render the scene from each camera.
- Bind the rendered cubemap as a global texture allowing objects with reflective shaders to assume the cubemap is there, similar to the shadowmap ...?
For water I was intending to render the reflected geometry into a texture which is then used when rendering the water (based on
this article) but due to a few issues like having to set user clip planes etc. which would again involve adding various things to Horde, it doesn't seem like the ideal approach. Has anyone else done any water rendering? I notice one of the projects (Aerosion Demo) done with an early version of Horde has water. Is anyone aware of how it was implemented? Perhaps just having the scene actually duplicated under the water?
Anyone have any thoughts on either of the above?
Thanks