A Swift library that adds a more Swift-like interface to GLFW. So far, it’s only been tested on macOS, but it should compile and run on Windows and Linux with little difficulty. As of pull request #5, cross-platform should be working now.
This package is based on CGLFW3, which is just the pure C bindings.
Setting Up
Adding this to your project is pretty standard for a Swift Package.
import GLFW
import OpenGL // Or whatever other library you use
func main() {
do {
try GLFWSession.initialize()
/* macOS's OpenGL implementation requires some extra tweaking */
GLFWWindow.hints.contextVersion = (4, 1)
GLFWWindow.hints.openglProfile = .core
GLFWWindow.hints.openglCompatibility = .forward
/* Create a windowed mode window and its OpenGL context */
let window = try GLFWWindow(width: 640, height: 480, title: "Hello World")
/* Make the window's context current */
window.context.makeCurrent()
/* Loop until the user closes the window */
while !window.shouldClose {
/* Render here */
glClear(GL_COLOR_BUFFER_BIT)
someRenderFunctionDefinedElsewhere()
/* Swap front and back buffers */
window.swapBuffers()
/* Poll for and process events */
GLFWSession.pollInputEvents()
}
} catch let error as GLFWError {
print(error.description ?? "Unknown error")
print(error.underlyingError.description)
} catch {
print(error)
}
}
Error Handling
Since they’re fundamental to GLFW, GLFWSession.initialize and GLFWWindow.init can both throw errors. However, if you’re expecting potential errors in other places, you can also call
try GLFWSession.checkForError()
Or, you can assign an error handler to catch them as soon as they come up:
GLFWSession.errorHandler = { error in
/* do something with it here */
}
Wrapping things up
Like Swift, this package is built with readability and strong type-checking in mind. Rather than passing ints and opaque pointers around, variables are represented with enums and so on.
SwiftGLFW
A Swift library that adds a more Swift-like interface to GLFW.
So far, it’s only been tested on macOS, but it should compile and run on Windows and Linux with little difficulty. As of pull request #5, cross-platform should be working now.This package is based on CGLFW3, which is just the pure C bindings.
Setting Up
Adding this to your project is pretty standard for a Swift Package.
Usage
Documentation
There’s a work in progress adaptation of GLFW’s C documentation on this repo, which should help show the differences (or serve as an introduction if you’re new to GLFW). In-code documentation is also being worked on.
Example Code
GLFW’s Hello Window example, except in a much more Swift-idiomatic way:
Error Handling
Since they’re fundamental to GLFW,
GLFWSession.initialize
andGLFWWindow.init
can both throw errors. However, if you’re expecting potential errors in other places, you can also callOr, you can assign an error handler to catch them as soon as they come up:
Wrapping things up
Like Swift, this package is built with readability and strong type-checking in mind. Rather than passing ints and opaque pointers around, variables are represented with enums and so on.
Is equivalent to this: