Aucune description

Douglas Andreani 277fa4668b CHORE: Update README.md il y a 1 an
include 38d6ae2938 FEAT: add include files for glad il y a 1 an
shaders aab769e69c CHORE: move shaders to new folder il y a 1 an
src bd5053ef5d CHORE: Add vcpkg as dependency manager: optional il y a 1 an
.gitignore 131347d9f4 CHORE: better cmake configuration and src folder il y a 1 an
CMakeLists.txt 923d3f7e2c CHORE: fix cmakelists.txt il y a 1 an
CMakePresets.json bd5053ef5d CHORE: Add vcpkg as dependency manager: optional il y a 1 an
GLTesting.sln 9fc908562a Initial Commit il y a 1 an
GLTesting.vcxproj 9fc908562a Initial Commit il y a 1 an
GLTesting.vcxproj.filters 9fc908562a Initial Commit il y a 1 an
LICENSE 226ecf1d83 CHORE: add README and LICENSE il y a 1 an
README.md 277fa4668b CHORE: Update README.md il y a 1 an

README.md

Maybe another GL

Another attempt to do something with OpenGL

Dependencies

  • GLM
  • SPDLOG
  • GLFW3
  • GLAD (built-in)

Build

  • Without vcpkg (make sure you have all dependencies setup correctly)

    mkdir build
    cd build
    cmake ..
    make
    
  • With vcpkg

    mkdir build
    cd build
    cmake .. --preset=default
    ninja