Class GLEXTCopyTexture

java.lang.Object
overrungl.opengl.ext.GLEXTCopyTexture

public final class GLEXTCopyTexture extends Object
GL_EXT_copy_texture
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    CopyTexImage1DEXT(int target, int level, int internalformat, int x, int y, int width, int border)
    Invokes glCopyTexImage1DEXT.
    void
    CopyTexImage2DEXT(int target, int level, int internalformat, int x, int y, int width, int height, int border)
    Invokes glCopyTexImage2DEXT.
    void
    CopyTexSubImage1DEXT(int target, int level, int xoffset, int x, int y, int width)
    Invokes glCopyTexSubImage1DEXT.
    void
    CopyTexSubImage2DEXT(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height)
    Invokes glCopyTexSubImage2DEXT.
    void
    CopyTexSubImage3DEXT(int target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height)
    Invokes glCopyTexSubImage3DEXT.

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • GLEXTCopyTexture

      public GLEXTCopyTexture(GLLoadFunc func)
  • Method Details

    • CopyTexImage1DEXT

      public void CopyTexImage1DEXT(int target, int level, int internalformat, int x, int y, int width, int border)

      Invokes glCopyTexImage1DEXT.

      void glCopyTexImage1DEXT((unsigned int) GLenum target, (int) GLint level, (unsigned int) GLenum internalformat, (int) GLint x, (int) GLint y, (int) GLsizei width, (int) GLint border);
      
    • CopyTexImage2DEXT

      public void CopyTexImage2DEXT(int target, int level, int internalformat, int x, int y, int width, int height, int border)

      Invokes glCopyTexImage2DEXT.

      void glCopyTexImage2DEXT((unsigned int) GLenum target, (int) GLint level, (unsigned int) GLenum internalformat, (int) GLint x, (int) GLint y, (int) GLsizei width, (int) GLsizei height, (int) GLint border);
      
    • CopyTexSubImage1DEXT

      public void CopyTexSubImage1DEXT(int target, int level, int xoffset, int x, int y, int width)

      Invokes glCopyTexSubImage1DEXT.

      void glCopyTexSubImage1DEXT((unsigned int) GLenum target, (int) GLint level, (int) GLint xoffset, (int) GLint x, (int) GLint y, (int) GLsizei width);
      
    • CopyTexSubImage2DEXT

      public void CopyTexSubImage2DEXT(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height)

      Invokes glCopyTexSubImage2DEXT.

      void glCopyTexSubImage2DEXT((unsigned int) GLenum target, (int) GLint level, (int) GLint xoffset, (int) GLint yoffset, (int) GLint x, (int) GLint y, (int) GLsizei width, (int) GLsizei height);
      
    • CopyTexSubImage3DEXT

      public void CopyTexSubImage3DEXT(int target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height)

      Invokes glCopyTexSubImage3DEXT.

      void glCopyTexSubImage3DEXT((unsigned int) GLenum target, (int) GLint level, (int) GLint xoffset, (int) GLint yoffset, (int) GLint zoffset, (int) GLint x, (int) GLint y, (int) GLsizei width, (int) GLsizei height);