virtualchetan
10-06-2003, 07:14 AM
Hi,
My perception is: We use display lists for faster rendering of fairly static models.Even with no 'physically' remote rendering, its useful to free CPU and give the work to the grphics card.
Now, if I have 'renderBody' function which calls some other functions like 'renderHead','renderLeg', etc.
Will use of Dislay lists help?
i.e.
renderHead()
{
......
}
renderLeg()
{
.........
}
renderBody()
{
glNewList(..)
.........
renderHead();
renderLeg();
............
glEndList();
}
My concern is, even after the list is compiled and getting executed remotely, it will do function calls back to the local machine/CPU
- Chetan
My perception is: We use display lists for faster rendering of fairly static models.Even with no 'physically' remote rendering, its useful to free CPU and give the work to the grphics card.
Now, if I have 'renderBody' function which calls some other functions like 'renderHead','renderLeg', etc.
Will use of Dislay lists help?
i.e.
renderHead()
{
......
}
renderLeg()
{
.........
}
renderBody()
{
glNewList(..)
.........
renderHead();
renderLeg();
............
glEndList();
}
My concern is, even after the list is compiled and getting executed remotely, it will do function calls back to the local machine/CPU
- Chetan