Skip to content
Snippets Groups Projects
Commit b481fe13 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

add note to remember how to use compiled vertex arrays
parent 6116efd1
No related branches found
No related tags found
No related merge requests found
// $Id: Mesh.cpp,v 1.128 2005-05-27 19:35:06 geuzaine Exp $
// $Id: Mesh.cpp,v 1.129 2005-06-03 22:11:48 geuzaine Exp $
//
// Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
//
......@@ -762,6 +762,8 @@ void _quadFace2(double *x, double *y, double *z,
_triFace(x2[j3], y2[j3], z2[j3], x[i0], y[i0], z[i0], x2[j4], y2[j4], z2[j4]);
}
// #include <GL/glext.h>
void Draw_Mesh_Array(VertexArray *va, int faces, int edges)
{
if(!va->num)
......@@ -775,6 +777,8 @@ void Draw_Mesh_Array(VertexArray *va, int faces, int edges)
glEnableClientState(GL_COLOR_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
// glLockArraysEXT(0, va->num); // extension GL_EXT_compiled_vertex_array
if(va->type == 1){
glDisableClientState(GL_NORMAL_ARRAY);
glDrawArrays(GL_POINTS, 0, va->type * va->num);
......@@ -806,6 +810,8 @@ void Draw_Mesh_Array(VertexArray *va, int faces, int edges)
}
}
// glUnlockArraysEXT(); // extension GL_EXT_compiled_vertex_array
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_COLOR_ARRAY);
glDisableClientState(GL_NORMAL_ARRAY);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment