Class GL12


  • public final class GL12
    extends java.lang.Object

    The core OpenGL1.2.1 API, with the imaging subset.

    Version:
    $Revision$ $Id$
    Author:
    cix_foo
    • Method Detail

      • glDrawRangeElements

        public static void glDrawRangeElements​(int mode,
                                               int start,
                                               int end,
                                               java.nio.ByteBuffer indices)
      • glDrawRangeElements

        public static void glDrawRangeElements​(int mode,
                                               int start,
                                               int end,
                                               java.nio.IntBuffer indices)
      • glDrawRangeElements

        public static void glDrawRangeElements​(int mode,
                                               int start,
                                               int end,
                                               java.nio.ShortBuffer indices)
      • glDrawRangeElements

        public static void glDrawRangeElements​(int mode,
                                               int start,
                                               int end,
                                               int indices_count,
                                               int type,
                                               long indices_buffer_offset)
      • glTexImage3D

        public static void glTexImage3D​(int target,
                                        int level,
                                        int internalFormat,
                                        int width,
                                        int height,
                                        int depth,
                                        int border,
                                        int format,
                                        int type,
                                        java.nio.ByteBuffer pixels)
      • glTexImage3D

        public static void glTexImage3D​(int target,
                                        int level,
                                        int internalFormat,
                                        int width,
                                        int height,
                                        int depth,
                                        int border,
                                        int format,
                                        int type,
                                        java.nio.DoubleBuffer pixels)
      • glTexImage3D

        public static void glTexImage3D​(int target,
                                        int level,
                                        int internalFormat,
                                        int width,
                                        int height,
                                        int depth,
                                        int border,
                                        int format,
                                        int type,
                                        java.nio.FloatBuffer pixels)
      • glTexImage3D

        public static void glTexImage3D​(int target,
                                        int level,
                                        int internalFormat,
                                        int width,
                                        int height,
                                        int depth,
                                        int border,
                                        int format,
                                        int type,
                                        java.nio.IntBuffer pixels)
      • glTexImage3D

        public static void glTexImage3D​(int target,
                                        int level,
                                        int internalFormat,
                                        int width,
                                        int height,
                                        int depth,
                                        int border,
                                        int format,
                                        int type,
                                        java.nio.ShortBuffer pixels)
      • glTexImage3D

        public static void glTexImage3D​(int target,
                                        int level,
                                        int internalFormat,
                                        int width,
                                        int height,
                                        int depth,
                                        int border,
                                        int format,
                                        int type,
                                        long pixels_buffer_offset)
      • glTexSubImage3D

        public static void glTexSubImage3D​(int target,
                                           int level,
                                           int xoffset,
                                           int yoffset,
                                           int zoffset,
                                           int width,
                                           int height,
                                           int depth,
                                           int format,
                                           int type,
                                           java.nio.ByteBuffer pixels)
      • glTexSubImage3D

        public static void glTexSubImage3D​(int target,
                                           int level,
                                           int xoffset,
                                           int yoffset,
                                           int zoffset,
                                           int width,
                                           int height,
                                           int depth,
                                           int format,
                                           int type,
                                           java.nio.DoubleBuffer pixels)
      • glTexSubImage3D

        public static void glTexSubImage3D​(int target,
                                           int level,
                                           int xoffset,
                                           int yoffset,
                                           int zoffset,
                                           int width,
                                           int height,
                                           int depth,
                                           int format,
                                           int type,
                                           java.nio.FloatBuffer pixels)
      • glTexSubImage3D

        public static void glTexSubImage3D​(int target,
                                           int level,
                                           int xoffset,
                                           int yoffset,
                                           int zoffset,
                                           int width,
                                           int height,
                                           int depth,
                                           int format,
                                           int type,
                                           java.nio.IntBuffer pixels)
      • glTexSubImage3D

        public static void glTexSubImage3D​(int target,
                                           int level,
                                           int xoffset,
                                           int yoffset,
                                           int zoffset,
                                           int width,
                                           int height,
                                           int depth,
                                           int format,
                                           int type,
                                           java.nio.ShortBuffer pixels)
      • glTexSubImage3D

        public static void glTexSubImage3D​(int target,
                                           int level,
                                           int xoffset,
                                           int yoffset,
                                           int zoffset,
                                           int width,
                                           int height,
                                           int depth,
                                           int format,
                                           int type,
                                           long pixels_buffer_offset)
      • glCopyTexSubImage3D

        public static void glCopyTexSubImage3D​(int target,
                                               int level,
                                               int xoffset,
                                               int yoffset,
                                               int zoffset,
                                               int x,
                                               int y,
                                               int width,
                                               int height)