Advertisement
Guest User

Untitled

a guest
May 18th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.46 KB | None | 0 0
  1.     <image name="nyc_inset" driver="gdal">
  2.         <url>../data/nyc-inset-wgs84.tif</url>
  3.         <shader>
  4.           <![CDATA[
  5.            #version 330
  6.            #pragma vp_entryPoint lift
  7.            #pragma vp_location vertex_model
  8.            vec3 vp_Normal;
  9.            void lift(inout vec4 vertex)
  10.            {
  11.                const float alt = 10000.0;
  12.                vertex.xyz += alt * vp_Normal;
  13.            }
  14.          ]]>
  15.         </shader>
  16.     </image>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement