@kmamal/gl
v9.1.0
Published
Fork of `gl` that can render to windows
Maintainers
Readme
@kmamal/gl
This is a simple fork of the gl package that adds a single feature:
it can work together with @kmamal/sdl to allow WebGL drawing to actual windows.
It should work on Linux, Mac, and Windows. Prebuilt binaries are available for x64 architectures, and arm-based Macs.
Example
const sdl = require('@kmamal/sdl')
const createContext = require('@kmamal/gl')
const window = sdl.video.createWindow({
title: "Hello, World!"
opengl: true,
})
// Clear screen to red
const { width, height, native } = window
const gl = createContext(width, height, { window: native })
gl.clearColor(1, 0, 0, 1)
gl.clear(gl.COLOR_BUFFER_BIT)
gl.swap()