mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 19:23:12 +02:00
use glDrawElements() to draw the particles - no major speedup so far, but less code
This commit is contained in:
parent
5a522feb32
commit
ea66f0c2a8
1 changed files with 1 additions and 10 deletions
11
main.cpp
11
main.cpp
|
@ -618,16 +618,7 @@ void display(void)
|
|||
glTexEnvf( GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE );
|
||||
glEnable( GL_POINT_SPRITE_ARB );
|
||||
if (!display_head) {
|
||||
glBegin( GL_POINTS );
|
||||
{
|
||||
for (i = 0; i < NUM_TRIS; i++)
|
||||
{
|
||||
glVertex3f(tris.vertices[i*3],
|
||||
tris.vertices[i*3+1],
|
||||
tris.vertices[i*3+2]);
|
||||
}
|
||||
}
|
||||
glEnd();
|
||||
glDrawElements(GL_POINTS, NUM_TRIS, GL_FLOAT, tris.vertices);
|
||||
}
|
||||
glDisable( GL_POINT_SPRITE_ARB );
|
||||
glDisable( GL_TEXTURE_2D );
|
||||
|
|
Loading…
Reference in a new issue