No description
Find a file
Lucas Alves 01a9353b15
v0.1.2
2025-03-29 14:07:14 -03:00
examples Initial release 2024-05-21 14:45:58 -03:00
src Turn AHardwareBuffer public and fix EGLint type. 2025-03-29 14:03:18 -03:00
LICENSE Create LICENSE 2024-05-21 14:54:15 -03:00
negl.nimble v0.1.2 2025-03-29 14:07:14 -03:00
README.md Add README 2024-05-21 15:48:50 -03:00

NEGL

This package contains bindings to EGL for the Nim programming language. Some EGL extensions are supported (currently only for Android)

Supported Platform

  • Android

In the future, more platforms may receive support

Contribute

I'm only one person and I use this library almost daily for personal projects. If you need more extensions, or support for other platform, you can PR or open an Issue with the specification.

Usage

Import the negl module to use egl functions in your project

import negl

var display = eglGetDisplay(EGL_DEFAULT_DISPLAY)

# Create a context, draw with OpenGL

To use the extensions:

import negl
import negl/exts