├── ClipMap.sln ├── bin32 ├── ClipMaps.exe └── glut32.dll ├── bin64 ├── ClipMaps.exe └── glut32.dll ├── ext ├── GL │ ├── glext.h │ ├── glut.def │ ├── glut.h │ ├── glxext.h │ └── wglext.h ├── glew.cpp ├── glew.h ├── glxew.h ├── mathlib │ ├── CVS │ │ ├── Entries │ │ ├── Entries.Extra │ │ ├── Entries.Extra.Old │ │ ├── Entries.Old │ │ ├── Repository │ │ └── Root │ ├── _matrix33.h │ ├── _matrix33_sse.h │ ├── _matrix44.h │ ├── _matrix44_sse.h │ ├── _vector2.h │ ├── _vector3.h │ ├── _vector3_sse.h │ ├── _vector4.h │ ├── _vector4_sse.h │ ├── bbox.h │ ├── envelopecurve.h │ ├── euler.h │ ├── eulerangles.h │ ├── line.h │ ├── matrix.h │ ├── matrixdefs.h │ ├── nmath.h │ ├── noise.h │ ├── ntypes.h │ ├── ntypes.h~ │ ├── pknorm.h │ ├── plane.h │ ├── polar.h │ ├── quaternion.h │ ├── rectangle.h │ ├── sphere.h │ ├── transform33.h │ ├── transform44.h │ ├── triangle.h │ ├── vector.h │ └── vector3envelopecurve.h └── wglew.h ├── lib32 └── glut32.lib ├── lib64 └── glut32.lib ├── shader ├── frag.txt └── vs.txt └── src ├── Bmp.cpp ├── Bmp.h ├── ClipMap.vcproj ├── ClipMap.vcxproj ├── ClipMap.vcxproj.filters ├── ClipMap.vcxproj.user ├── Main.cpp ├── core.h ├── glsl.h └── ogl.h /ClipMap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ClipMap.sln -------------------------------------------------------------------------------- /bin32/ClipMaps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/bin32/ClipMaps.exe -------------------------------------------------------------------------------- /bin32/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/bin32/glut32.dll -------------------------------------------------------------------------------- /bin64/ClipMaps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/bin64/ClipMaps.exe -------------------------------------------------------------------------------- /bin64/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/bin64/glut32.dll -------------------------------------------------------------------------------- /ext/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/GL/glext.h -------------------------------------------------------------------------------- /ext/GL/glut.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/GL/glut.def -------------------------------------------------------------------------------- /ext/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/GL/glut.h -------------------------------------------------------------------------------- /ext/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/GL/glxext.h -------------------------------------------------------------------------------- /ext/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/GL/wglext.h -------------------------------------------------------------------------------- /ext/glew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/glew.cpp -------------------------------------------------------------------------------- /ext/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/glew.h -------------------------------------------------------------------------------- /ext/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/glxew.h -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/CVS/Entries -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries.Extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/CVS/Entries.Extra -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries.Extra.Old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/CVS/Entries.Extra.Old -------------------------------------------------------------------------------- /ext/mathlib/CVS/Entries.Old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/CVS/Entries.Old -------------------------------------------------------------------------------- /ext/mathlib/CVS/Repository: -------------------------------------------------------------------------------- 1 | radonlabs/code/nebula2/inc/mathlib 2 | -------------------------------------------------------------------------------- /ext/mathlib/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:sven3@192.168.0.90:/mnt/hdc/cvsroot 2 | -------------------------------------------------------------------------------- /ext/mathlib/_matrix33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_matrix33.h -------------------------------------------------------------------------------- /ext/mathlib/_matrix33_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_matrix33_sse.h -------------------------------------------------------------------------------- /ext/mathlib/_matrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_matrix44.h -------------------------------------------------------------------------------- /ext/mathlib/_matrix44_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_matrix44_sse.h -------------------------------------------------------------------------------- /ext/mathlib/_vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_vector2.h -------------------------------------------------------------------------------- /ext/mathlib/_vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_vector3.h -------------------------------------------------------------------------------- /ext/mathlib/_vector3_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_vector3_sse.h -------------------------------------------------------------------------------- /ext/mathlib/_vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_vector4.h -------------------------------------------------------------------------------- /ext/mathlib/_vector4_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/_vector4_sse.h -------------------------------------------------------------------------------- /ext/mathlib/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/bbox.h -------------------------------------------------------------------------------- /ext/mathlib/envelopecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/envelopecurve.h -------------------------------------------------------------------------------- /ext/mathlib/euler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/euler.h -------------------------------------------------------------------------------- /ext/mathlib/eulerangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/eulerangles.h -------------------------------------------------------------------------------- /ext/mathlib/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/line.h -------------------------------------------------------------------------------- /ext/mathlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/matrix.h -------------------------------------------------------------------------------- /ext/mathlib/matrixdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/matrixdefs.h -------------------------------------------------------------------------------- /ext/mathlib/nmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/nmath.h -------------------------------------------------------------------------------- /ext/mathlib/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/noise.h -------------------------------------------------------------------------------- /ext/mathlib/ntypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/ntypes.h -------------------------------------------------------------------------------- /ext/mathlib/ntypes.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/ntypes.h~ -------------------------------------------------------------------------------- /ext/mathlib/pknorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/pknorm.h -------------------------------------------------------------------------------- /ext/mathlib/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/plane.h -------------------------------------------------------------------------------- /ext/mathlib/polar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/polar.h -------------------------------------------------------------------------------- /ext/mathlib/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/quaternion.h -------------------------------------------------------------------------------- /ext/mathlib/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/rectangle.h -------------------------------------------------------------------------------- /ext/mathlib/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/sphere.h -------------------------------------------------------------------------------- /ext/mathlib/transform33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/transform33.h -------------------------------------------------------------------------------- /ext/mathlib/transform44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/transform44.h -------------------------------------------------------------------------------- /ext/mathlib/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/triangle.h -------------------------------------------------------------------------------- /ext/mathlib/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/vector.h -------------------------------------------------------------------------------- /ext/mathlib/vector3envelopecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/mathlib/vector3envelopecurve.h -------------------------------------------------------------------------------- /ext/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/ext/wglew.h -------------------------------------------------------------------------------- /lib32/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/lib32/glut32.lib -------------------------------------------------------------------------------- /lib64/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/lib64/glut32.lib -------------------------------------------------------------------------------- /shader/frag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/shader/frag.txt -------------------------------------------------------------------------------- /shader/vs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/shader/vs.txt -------------------------------------------------------------------------------- /src/Bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/Bmp.cpp -------------------------------------------------------------------------------- /src/Bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/Bmp.h -------------------------------------------------------------------------------- /src/ClipMap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/ClipMap.vcproj -------------------------------------------------------------------------------- /src/ClipMap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/ClipMap.vcxproj -------------------------------------------------------------------------------- /src/ClipMap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/ClipMap.vcxproj.filters -------------------------------------------------------------------------------- /src/ClipMap.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/ClipMap.vcxproj.user -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/core.h -------------------------------------------------------------------------------- /src/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/glsl.h -------------------------------------------------------------------------------- /src/ogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp4cerat/Geometry-Clipmap-Tutorial-in-OpenGL/HEAD/src/ogl.h --------------------------------------------------------------------------------