]> git.mxchange.org Git - flightgear.git/blobdiff - src/Objects/material.hxx
Moving towards increased dependence on ssg.
[flightgear.git] / src / Objects / material.hxx
index d5399dbc8c35f1a95d36affc6caeb96b947c3930..ac103440fb451374edef16f43b7240142ca7d11a 100644 (file)
@@ -37,7 +37,7 @@
 #  include <windows.h>
 #endif
 
-#include "Include/compiler.h"
+#include <Include/compiler.h>
 
 #include <GL/glut.h>
 #include <XGL/xgl.h>
@@ -88,13 +88,13 @@ public:
 
     inline bool is_loaded() const { return loaded; }
     inline GLuint get_texture_id() const { return texture_id; }
+    inline string get_texture_name() const { return texture_name; }
     inline double get_xsize() const { return xsize; }
     inline double get_ysize() const { return ysize; }
     inline GLfloat *get_ambient() { return ambient; }
     inline GLfloat *get_diffuse() { return diffuse; }
     inline GLfloat *get_specular() { return specular; }
     inline GLfloat *get_emissive() { return emissive; }
-
 };