link19
03-12-2001, 07:31 AM
Hi all,
Had a for loop with the second parameter i >= 0. In this case the i was of type GLuint. This line caused me quite the difficulty. On execution it paused and you could hear the disk spooling, and then id get an error message that i was out of virtual memory. If i change the type to int...no worries. As well if i kept the type as GLuint but changed the condition to i>0...also no problem. Anyone know the reasons behind these behaviours?
Had a for loop with the second parameter i >= 0. In this case the i was of type GLuint. This line caused me quite the difficulty. On execution it paused and you could hear the disk spooling, and then id get an error message that i was out of virtual memory. If i change the type to int...no worries. As well if i kept the type as GLuint but changed the condition to i>0...also no problem. Anyone know the reasons behind these behaviours?