Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa06d7f

Browse files
authored
Merge pull request #212 from jpaquim/patch-1
Update GLFW setup instructions for macOS
2 parents 549c935 + 4dfa302 commit fa06d7f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

en/02_Development_environment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,10 @@ After downloading it, simply extract the contents to a folder of your choice (ke
397397

398398
As mentioned before, Vulkan by itself is a platform agnostic API and does not include tools for creation a window to display the rendered results. We'll use the [GLFW library](http://www.glfw.org/) to create a window, which supports Windows, Linux and MacOS. There are other libraries available for this purpose, like [SDL](https://www.libsdl.org/), but the advantage of GLFW is that it also abstracts away some of the other platform-specific things in Vulkan besides just window creation.
399399

400-
To install GLFW on MacOS we will use the Homebrew package manager. Vulkan support for MacOS is still not fully available on the current (at the time of this writing) stable version 3.2.1. Therefore we will install the latest version of the `glfw3` package using:
400+
To install GLFW on MacOS we will use the Homebrew package manager to get the `glfw` package:
401401

402402
```bash
403-
brew install glfw3 --HEAD
403+
brew install glfw
404404
```
405405

406406
### GLM

0 commit comments

Comments
 (0)