EXT_fbo spec changes

This commit is contained in:
Ioannis Tsakpinis 2005-06-06 20:51:38 +00:00
parent 2f9b8b5a24
commit ab279e63f8
1 changed files with 18 additions and 12 deletions

View File

@ -36,21 +36,22 @@ import org.lwjgl.util.generator.*;
import java.nio.IntBuffer; import java.nio.IntBuffer;
public interface EXT_framebuffer_object { public interface EXT_framebuffer_object {
/*
/**
* Accepted by the <target> parameter of BindFramebufferEXT, * Accepted by the <target> parameter of BindFramebufferEXT,
* CheckFramebufferStatusEXT, FramebufferTexture{1D|2D|3D}EXT, and * CheckFramebufferStatusEXT, FramebufferTexture{1D|2D|3D}EXT, and
* FramebufferRenderbufferEXT: * FramebufferRenderbufferEXT:
*/ */
int GL_FRAMEBUFFER_EXT = 0x8D40; int GL_FRAMEBUFFER_EXT = 0x8D40;
/* /**
* Accepted by the <target> parameter of BindRenderbufferEXT, * Accepted by the <target> parameter of BindRenderbufferEXT,
* RenderbufferStorageEXT, and GetRenderbufferParameterivEXT, and * RenderbufferStorageEXT, and GetRenderbufferParameterivEXT, and
* returned by GetFramebufferAttachmentParameterivEXT: * returned by GetFramebufferAttachmentParameterivEXT:
*/ */
int GL_RENDERBUFFER_EXT = 0x8D41; int GL_RENDERBUFFER_EXT = 0x8D41;
/* /**
* Accepted by the <internalformat> parameter of * Accepted by the <internalformat> parameter of
* RenderbufferStorageEXT: * RenderbufferStorageEXT:
*/ */
@ -60,14 +61,20 @@ public interface EXT_framebuffer_object {
int GL_STENCIL_INDEX8_EXT = 0x8D48; int GL_STENCIL_INDEX8_EXT = 0x8D48;
int GL_STENCIL_INDEX16_EXT = 0x8D49; int GL_STENCIL_INDEX16_EXT = 0x8D49;
/* /**
* Accepted by the <pname> parameter of GetRenderbufferParameterivEXT: * Accepted by the <pname> parameter of GetRenderbufferParameterivEXT:
*/ */
int GL_RENDERBUFFER_WIDTH_EXT = 0x8D42; int RENDERBUFFER_WIDTH_EXT = 0x8D42;
int GL_RENDERBUFFER_HEIGHT_EXT = 0x8D43; int RENDERBUFFER_HEIGHT_EXT =0x8D43;
int GL_RENDERBUFFER_INTERNAL_FORMAT_EXT = 0x8D44; int RENDERBUFFER_INTERNAL_FORMAT_EXT = 0x8D44;
int RENDERBUFFER_RED_SIZE_EXT = 0x8D50;
int RENDERBUFFER_GREEN_SIZE_EXT = 0x8D51;
int RENDERBUFFER_BLUE_SIZE_EXT = 0x8D52;
int RENDERBUFFER_ALPHA_SIZE_EXT = 0x8D53;
int RENDERBUFFER_DEPTH_SIZE_EXT = 0x8D54;
int RENDERBUFFER_STENCIL_SIZE_EXT = 0x8D55;
/* /**
* Accepted by the <pname> parameter of * Accepted by the <pname> parameter of
* GetFramebufferAttachmentParameterivEXT: * GetFramebufferAttachmentParameterivEXT:
*/ */
@ -77,7 +84,7 @@ public interface EXT_framebuffer_object {
int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT = 0x8CD3; int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT = 0x8CD3;
int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT = 0x8CD4; int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT = 0x8CD4;
/* /**
* Accepted by the <attachment> parameter of * Accepted by the <attachment> parameter of
* FramebufferTexture{1D|2D|3D}EXT, FramebufferRenderbufferEXT, and * FramebufferTexture{1D|2D|3D}EXT, FramebufferRenderbufferEXT, and
* GetFramebufferAttachmentParameterivEXT * GetFramebufferAttachmentParameterivEXT
@ -113,7 +120,6 @@ public interface EXT_framebuffer_object {
int GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT = 0x8CDB; int GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT = 0x8CDB;
int GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT = 0x8CDC; int GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT = 0x8CDC;
int GL_FRAMEBUFFER_UNSUPPORTED_EXT = 0x8CDD; int GL_FRAMEBUFFER_UNSUPPORTED_EXT = 0x8CDD;
int GL_FRAMEBUFFER_STATUS_ERROR_EXT = 0x8CDE;
/** /**
* Accepted by GetIntegerv(): * Accepted by GetIntegerv():