From ac595855f077b5a4cfbb3ec7bfa4ab3d0fccf0e2 Mon Sep 17 00:00:00 2001 From: Ioannis Tsakpinis Date: Wed, 16 Feb 2005 11:33:47 +0000 Subject: [PATCH] Hidden platform specific constants --- src/templates/org/lwjgl/opengl/ARB_color_buffer_float.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/templates/org/lwjgl/opengl/ARB_color_buffer_float.java b/src/templates/org/lwjgl/opengl/ARB_color_buffer_float.java index bb20cb7b..23706e3d 100644 --- a/src/templates/org/lwjgl/opengl/ARB_color_buffer_float.java +++ b/src/templates/org/lwjgl/opengl/ARB_color_buffer_float.java @@ -59,18 +59,18 @@ public interface ARB_color_buffer_float { * parameter array of wglGetPixelFormatAttribivARB, and the * parameter array of wglGetPixelFormatAttribfvARB: */ - int WGL_TYPE_RGBA_FLOAT_ARB = 0x21A0; + //int WGL_TYPE_RGBA_FLOAT_ARB = 0x21A0; /* * Accepted as values of the arguments in the * glXCreateNewContext and glXCreateContext functions */ - int GLX_RGBA_FLOAT_TYPE = 0x20B9; + //int GLX_RGBA_FLOAT_TYPE = 0x20B9; /* * Accepted as a bit set in the GLX_RENDER_TYPE variable */ - int GLX_RGBA_FLOAT_BIT = 0x00000004; + //int GLX_RGBA_FLOAT_BIT = 0x00000004; void glClampColorARB(@GLenum int target, @GLenum int clamp); }