something like glDrawElements

Started by
1 comment, last by Toji 18 years, 4 months ago
Hello, i was wondering if there is another function that also renders primitives from array data. Just like glDrawElements. PS. and i also dont mean glDrawArrays :)
Advertisement
I found what i was looking for, it was glDrawRangeElements.
But when i try to compile my code with this function i get

'glDrawRangeElements' : undeclared identifier

Any idea what could be wrong...??
Since glDrawRangeElements is not a part of OpenGL 1.1 (therefore does not have native windows support) it is treated as an extension. Like any extension, You need to register it in order to use it.

(I can post code if you need it later, but I don't have any avalible just now...)
// The user formerly known as Tojiro67445, formerly known as Toji [smile]

This topic is closed to new replies.

Advertisement