GLdc: an OpenGL implementation for the SEGA Dreamcast
Go to file
2018-06-09 16:44:11 +01:00
containers Make the containers C++ compatible 2018-05-28 08:52:44 +01:00
GL Fix various problems with the lighting calculations 2018-06-06 21:23:17 +01:00
include Add gluOrtho2D, ortho2d example and fix glOrtho 2018-05-29 19:39:27 +01:00
samples Fix a minor issue in the lerabot sample 2018-06-09 16:44:11 +01:00
.gitattributes Ignore the noise... Just testing something. 2014-08-30 13:33:02 -04:00
.gitignore Add NeHe lesson 3, and a Vertex Array version of lesson 2 2018-05-29 17:02:57 +01:00
LICENSE Create LICENSE 2018-05-20 19:51:36 +01:00
Makefile Add a near-z line clipping function in preparation for implementing near-z clipping 2018-05-31 09:38:34 +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