1 /*
2  * File:         mat_edit.h
3  *
4  * Description:  header for mat_edit.c
5  *
6  *
7  * This source code is part of kludge3d, and is released under the
8  * GNU General Public License.
9  *
10  *
11  */
12 
13 #ifndef MATEDIT_H
14 #define MATEDIT_H
15 
16 #include "material.h"
17 
18 void matedit_show( Material *material );
19 /*
20 void matedit_get_diffuse(struct mat_edit_data *med, GLfloat *v);
21 void matedit_get_ambient(struct mat_edit_data *med, GLfloat *v);
22 void matedit_get_specular(struct mat_edit_data *med, GLfloat *v);
23 void matedit_get_emission(struct mat_edit_data *med, GLfloat *v);
24 void matedit_get_shininess(struct mat_edit_data *med, GLfloat v);
25 
26 void preview_copy_material(GtkGLTexPreview *gtpv, gpointer data);*/
27 
28 #endif
29 
30