#90236 - ikaris - Thu Jun 29, 2006 12:52 am
I know that the DS is supposed to be able to render wireframe lines faster than other similar hardware (other platforms have to use triangles with two of the three points on top of each other, which is slow...).
You can see this in the 3d map of Metroid Hunters...
However, when I try to use GL_LINES or GL_LINE with a display list, it doesn't like it...
is this possible ?
I know that videoGL.h defines only these types...
You can see this in the 3d map of Metroid Hunters...
However, when I try to use GL_LINES or GL_LINE with a display list, it doesn't like it...
is this possible ?
I know that videoGL.h defines only these types...
Code: |
#define GL_TRIANGLE 0 #define GL_QUAD 1 #define GL_TRIANGLES 0 #define GL_QUADS 1 #define GL_TRIANGLE_STRIP 2 #define GL_QUAD_STRIP 3 |