GLdc: an OpenGL implementation for the SEGA Dreamcast
Go to file
2018-05-25 21:08:39 +01:00
containers Fix compiling on OSX 2018-05-25 21:08:39 +01:00
GL Stub out some of the ARB_framebuffer_object extension 2018-05-20 21:29:04 +01:00
include Stub out some of the ARB_framebuffer_object extension 2018-05-20 21:29:04 +01:00
.gitattributes Ignore the noise... Just testing something. 2014-08-30 13:33:02 -04:00
.gitignore Add .a files to .gitignore 2018-05-21 20:28:52 +01:00
LICENSE Create LICENSE 2018-05-20 19:51:36 +01:00
Makefile Build out to libGLdc.a to avoid confusion with libGL 2018-05-21 19:55:20 +01:00
README.md Update README.md 2018-05-20 16:25:37 +01:00

GLdc

This is a partial implementation of OpenGL 1.2 for the SEGA Dreamcast for use with the KallistiOS SDK.

It began as a fork of libGL by Josh Pearson but has undergone a large refactor which is essentially a rewrite.

The aim is to implement as much of OpenGL 1.2 as possible, and to add additional features via extensions.

Things left to (re)implement:

  • Near-Z clipping (Tricky)
  • Spotlights (Trivial)
  • Framebuffer extension (Trivial)
  • Multitexturing (Trivial)
  • Texture Matrix (Trivial)
  • Mipmapping (Trivial)

Things I'd like to do:

  • Use a clean "gl.h"
  • Define an extension for modifier volumes
  • Support GL_ALPHA_TEST using punch-thru polys
  • Add support for point sprites
  • Optimise, add unit tests for correctness