Skip to content

Instantly share code, notes, and snippets.

View cjtallman's full-sized avatar

cjtallman

  • Seattle, WA
  • 20:00 (UTC -08:00)
View GitHub Profile
@gcatlin
gcatlin / glfw-metal-example.m
Last active October 13, 2025 01:15
Minimal C GLFW Metal example
//
// cc glfw-metal-example.m `pkg-config --cflags --libs glfw3` -framework AppKit -framework Metal -framework QuartzCore
//
#define GLFW_INCLUDE_NONE
#define GLFW_EXPOSE_NATIVE_COCOA
#include <GLFW/glfw3.h>
#include <GLFW/glfw3native.h>
#import <Metal/Metal.h>
#import <QuartzCore/CAMetalLayer.h>