Package org.lwjgl.opengles
Class NVFramebufferBlit
- java.lang.Object
-
- org.lwjgl.opengles.NVFramebufferBlit
-
public class NVFramebufferBlit extends java.lang.ObjectNative bindings to the NV_framebuffer_blit extension.This extension modifies OpenGL ES 2.0 by splitting the framebuffer object binding point into separate DRAW and READ bindings. This allows copying directly from one framebuffer to another. In addition, a new high performance blit function is added to facilitate these blits and perform some data conversion where allowed.
Requires
GLES 2.0.
-
-
Field Summary
Fields Modifier and Type Field and Description static intGL_DRAW_FRAMEBUFFER_BINDING_NVAccepted by thepnameparameters of GetIntegerv and GetFloatv.static intGL_DRAW_FRAMEBUFFER_NVAccepted by thetargetparameter of BindFramebuffer, CheckFramebufferStatus, FramebufferTexture2D, FramebufferRenderbuffer, and GetFramebufferAttachmentParameteriv.static intGL_READ_FRAMEBUFFER_BINDING_NVAccepted by thepnameparameters of GetIntegerv and GetFloatv.static intGL_READ_FRAMEBUFFER_NVAccepted by thetargetparameter of BindFramebuffer, CheckFramebufferStatus, FramebufferTexture2D, FramebufferRenderbuffer, and GetFramebufferAttachmentParameteriv.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidglBlitFramebufferNV(int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, int mask, int filter)
-
-
-
Field Detail
-
GL_READ_FRAMEBUFFER_NV
public static final int GL_READ_FRAMEBUFFER_NV
Accepted by thetargetparameter of BindFramebuffer, CheckFramebufferStatus, FramebufferTexture2D, FramebufferRenderbuffer, and GetFramebufferAttachmentParameteriv.- See Also:
- Constant Field Values
-
GL_DRAW_FRAMEBUFFER_NV
public static final int GL_DRAW_FRAMEBUFFER_NV
Accepted by thetargetparameter of BindFramebuffer, CheckFramebufferStatus, FramebufferTexture2D, FramebufferRenderbuffer, and GetFramebufferAttachmentParameteriv.- See Also:
- Constant Field Values
-
GL_DRAW_FRAMEBUFFER_BINDING_NV
public static final int GL_DRAW_FRAMEBUFFER_BINDING_NV
Accepted by thepnameparameters of GetIntegerv and GetFloatv.- See Also:
- Constant Field Values
-
GL_READ_FRAMEBUFFER_BINDING_NV
public static final int GL_READ_FRAMEBUFFER_BINDING_NV
Accepted by thepnameparameters of GetIntegerv and GetFloatv.- See Also:
- Constant Field Values
-
-