Fork from PacketPublishing and add a simple solution for Windows user to solve cmake find_package issue in Windows environement. Windows doesn't own a unified folder (/usr/local/lib) to search library. Microsoft provides vcpkg for package management to speed up the development process.
- Install [vcpkg][https://github.com/microsoft/vcpkg] Follow the vcpkg installation instructions. [vcpkg document][https://vcpkg.readthedocs.io/en/latest/] Instance a new powershell console.
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
PS> .\bootstrap-vcpkg.bat
- Install GLM and GLFW via vcpkg.
x64 version:
vcpkg.exe install glfw3:x64-windows
vcpkg.exe install glm:x64-windows
x86 version:
vcpkg.exe install glfw3
vcpkg.exe install glm
- Add VCPKG Toolchain
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
Replace
C:/vcpkg/scripts/buildsystems/vcpkg.cmake
with your VCPKG root. After this, CMake could find GLM and GLFW3 automatically.
Example code from the OpenGL 4 Shading Language Cookbook, 3rd Edition
The example code from the OpenGL 4 Shading Language Cookbook, 3rd Edition, by David Wolff and published by Packt Publishing.
To compile these examples, you'll need the following:
- The GLM Mathematics Library version 0.9.6 or later. Note that versions
prior to 0.9.6 may not work properly because of a switch from degrees to
radians. GLM 0.9.5 will work, but you'll need to add
#define GLM_FORCE_RADIANS
prior to including the glm header files. - GLFW version 3.0 or later.
The example code builds with CMake. Note that the examples for Chapter 10 will not function on MacOS due to lack of support for compute shaders on that platform.
- Install GLFW by following the instructions on their web site.
- Install the latest version of GLM. Note that for CMake to find GLM
correctly, you need to run the install "build" (e.g.
make install
) or install GLM from your favorite package manager. Otherwise, the CMake config files will not be created/available. - Download this example code from github, or clone using git.
- Run cmake. If cmake has difficulties finding the GLFW or GLM installations,
set the variable
CMAKE_PREFIX_PATH
to help cmake find them.
It can be tricky to get CMake to find the GLM libraries, unfortunately. See below for tips. - Compile by running
make
.
Any problems, create an issue on github.
When searching for GLM, CMake looks for the files glmConfig.cmake
and glmConfigVersion.cmake
.
If you install GLM using a package manager such as Homebrew on macOS, or a Linux package manager the cmake files should already be included.
Otherwise, if you're using the GLM source distribution, you'll have to run GLM through CMake to get it to
generate the glmConfig.cmake
and glmConfigVersion.cmake
files. It is frustrating, I wish that the GLM
maintainers didn't require this.
- Download GLM and extract it to some location:
GLM_SRC
cd $GLM_SRC
mkdir build
cd build
cmake -D GLM_TEST_ENABLE=OFF -D CMAKE_INSTALL_PREFIX=MY_GLM_LOCATION ..
cmake --build . --target install
Replace GLM_SRC
above with the place where you extracted the GLM zip file, and replace MY_GLM_LOCATION
with the location where you want to install GLM. This should generate the needed cmake files and install
all of GLM to MY_GLM_LOCATION
.
- Use the Visual Studio target in CMake:
-G "Visual Studio..."
, open the Visual Studio solution. You should see one project per chapter. - Each chapter requires a command line argument to choose a recipe. When running in VS, be sure to set the 'Command Argument' under 'Properties' for the appropriate recipe.
An OpenGL header file and a function loader for a 4.3 core profile are included with this project. They were generated using GLAD. This loader should also work on MacOS under a 4.1 core profile, but of course not all functions will load.
The code has been tested with OpenGL 4.3 on Windows/Linux and OpenGL 4.1 on MacOS.
This is the code repository for OpenGL 4 Shading Language Cookbook - Third Edition, published by Packt.
Build high-quality, real-time 3D graphics with OpenGL 4.6, GLSL 4.6 and C++17
OpenGL 4 Shading Language Cookbook, Third Edition provides easy-to-follow recipes that first walk you through the theory and background behind each technique, and then proceed to showcase and explain the GLSL and OpenGL code needed to implement them.
This book covers the following exciting features:
- Compile, debug, and communicate with shader programs
- Use compute shaders for physics, animation, and general computing
- Learn about features such as shader storage buffer objects and image load/store
- Utilize noise in shaders and learn how to use shaders in animations
- Use textures for various effects including cube maps for reflection or refraction
If you feel this book is for you, get your copy today!
All of the code is organized into folders. For example, Chapter02.
The code will look like the following:
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 6);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
GLFWwindow *window = glfwCreateWindow(800, 600, "Title", nullptr, nullptr);
Following is what you need for this book: If you are a graphics programmer looking to learn the GLSL shading language, this book is for you. A basic understanding of 3D graphics and programming experience with C++ are required.
With the following software and hardware list you can run all code files present in the book (Chapter 1-11).
Chapter | Software required | OS required |
---|---|---|
All | GLM Mathematics Library | Windows, Mac OS X, and Linux (Any) |
GLFW | Windows, Mac OS X, and Linux (Any) | |
CMake | Windows, Mac OS X, and Linux (Any) | |
Visual Studio 2017 | Windows, Mac OS X, and Linux (Any) |
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.
David Wolff is a professor in the computer science department at Pacific Lutheran University (PLU). He received a PhD in Physics and an MS in computer science from Oregon State University. He has been teaching computer graphics to undergraduates at PLU for over 17 years, using OpenGL.
Click here if you have any feedback or suggestions.