00001 /* 00002 * Copyright © 2010 Ian D. Romanick 00003 * 00004 * Permission is hereby granted, free of charge, to any person obtaining a 00005 * copy of this software and associated documentation files (the "Software"), 00006 * to deal in the Software without restriction, including without limitation 00007 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 00008 * and/or sell copies of the Software, and to permit persons to whom the 00009 * Software is furnished to do so, subject to the following conditions: 00010 * 00011 * The above copyright notice and this permission notice (including the next 00012 * paragraph) shall be included in all copies or substantial portions of the 00013 * Software. 00014 * 00015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 00016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 00018 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 00019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 00020 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 00021 * DEALINGS IN THE SOFTWARE. 00022 */ 00023 00024 #include "glu3.h" 00025 00026 #if defined(__cplusplus) 00027 extern "C" { 00028 #endif 00029 00030 typedef void (mesh_begin_cb)(void *data, GLenum mode); 00031 typedef void (mesh_index_cb)(void *data, unsigned index); 00032 typedef void (mesh_end_cb)(void *data); 00033 00069 extern void 00070 generate_triangle_mesh(unsigned rows, unsigned cols, unsigned width, 00071 mesh_begin_cb *begin_cb, 00072 mesh_index_cb *index_cb, 00073 mesh_end_cb *end_cb, 00074 void *data); 00075 00076 #ifdef __cplusplus 00077 }; 00078 #endif