Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

readme.md

DelFEM2 C++ Examples using TinyGLTF & Legacy OpenGL

These demos use OpenGL version 2.1 and GLSL shaer version 1.2 which are depricated in many environment. But still it is convenient to use legacy functions such as glBegin(), glEnd(). We will eventually consider porting these demo into newer OpenGL >= 3.3 in the examples_glfwnew folder.

Download dependencies

# move to the top directory
cd delfem2

# download tinygltf 
git submodule update --init -- 3rd_party/tinygltf

# download glfw and compile it
git submodule update --init -- 3rd_party/glfw
cd 3rd_party/glfw
cmake .
make
cd ../..

[../examples_glfwnew]: