]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/sky/cloud.hxx
My old email address is no longer valid ... point to my web page.
[simgear.git] / simgear / scene / sky / cloud.hxx
index cda7245f3a75ee45e36316f1d3a50b2061a77661..73ca832232d2af9e118bf7c130274e3cb5b9adb0 100644 (file)
@@ -5,7 +5,7 @@
 
 // Written by Curtis Olson, started June 2000.
 //
-// Copyright (C) 2000  Curtis L. Olson  - curt@flightgear.org
+// Copyright (C) 2000  Curtis L. Olson  - http://www.flightgear.org/~curt
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -169,8 +169,23 @@ public:
     /** draw the cloud layer */
     void draw( bool top );
 
+    static bool enable_bump_mapping;
+
 private:
 
+    struct CloudVertex {
+        sgVec3 position;
+        sgVec2 texCoord;
+        sgVec3 tangentSpLight;
+        sgVec3 sTangent;
+        sgVec3 tTangent;
+        sgVec3 normal;
+        sgVec4 color;
+    };
+
+    CloudVertex *vertices;
+    unsigned int *indices;
+
     ssgRoot *layer_root;
     ssgTransform *layer_transform;
     ssgLeaf *layer[4];