]> git.mxchange.org Git - simgear.git/blobdiff - simgear/screen/texture.hxx
MSVC fix.
[simgear.git] / simgear / screen / texture.hxx
index 9f5f48bd59862a83237af8844e626bf57db5780a..00265336a8f7bb3a541738f3d6299ff7686131d4 100644 (file)
@@ -140,8 +140,12 @@ public:
     inline const char *err_str() { return errstr; }
     inline void clear_err_str() { errstr = ""; }
 
-    void make_monochrome(GLubyte r=255, GLubyte g=255, GLubyte b=255);
-    void make_normalmap(float brightness = 1.0);
+    void make_maxcolorwindow();
+    void make_grayscale(float contrast = 1.0);
+    void make_monochrome(float contrast = 1.0,
+                         GLubyte r=255, GLubyte g=255, GLubyte b=255);
+    void make_normalmap(float brightness = 1.0, float contrast = 1.0);
+    void make_bumpmap(float brightness = 1.0, float contrast = 1.0);
 };
 
 #endif