diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-08-14 18:18:17 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-08-14 18:18:17 -0400 |
commit | 82b814f123a71ef3cdc2cffa32ba7b8039bdf4eb (patch) | |
tree | a0b8718340114d5639bbad1fc75cfe4b85eb4693 /2d/wrappers | |
parent | e3a3ee4d1383b5de455513539999a426bca6c6fe (diff) |
Remove unnecessary gl enum.
Diffstat (limited to '2d/wrappers')
-rw-r--r-- | 2d/wrappers/gl.scm | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/2d/wrappers/gl.scm b/2d/wrappers/gl.scm index 104fe6c..8360463 100644 --- a/2d/wrappers/gl.scm +++ b/2d/wrappers/gl.scm @@ -27,26 +27,6 @@ #:use-module ((figl gl low-level) #:renamer (symbol-prefix-proc '%)) #:export (pixel-format*)) -;; Workaround broken figl pixel-fromat enumeration. -(define-enumeration - pixel-format* - (color-index 6400) - (stencil-index 6401) - (depth-component 6402) - (red 6403) - (green 6404) - (blue 6405) - (alpha 6406) - (rgb 6407) - (rgba 6408) - (luminance 6409) - (luminance-alpha 6410) - (abgr-ext 32768) - (cmyk-ext 32780) - (cmyka-ext 32781) - (ycrcb-422-sgix 33211) - (ycrcb-444-sgix 33212)) - ;;; ;;; 3.8.1 Texture Image Specification ;;; |