Class GL14C

    • Method Detail

      • glBlendColor

        public static void glBlendColor​(float red,
                                        float green,
                                        float blue,
                                        float alpha)
        Specifies the constant color Cc to be used in blending.
        Parameters:
        red - the red color component
        green - the green color component
        blue - the blue color component
        alpha - the alpha color component
        See Also:
        Reference Page
      • nglMultiDrawArrays

        public static void nglMultiDrawArrays​(int mode,
                                              long first,
                                              long count,
                                              int drawcount)
        Unsafe version of: MultiDrawArrays
        Parameters:
        drawcount - the size of first and count
      • nglMultiDrawElements

        public static void nglMultiDrawElements​(int mode,
                                                long count,
                                                int type,
                                                long indices,
                                                int drawcount)
        Unsafe version of: MultiDrawElements
        Parameters:
        drawcount - the size of the count array
      • glPointParameterf

        public static void glPointParameterf​(int pname,
                                             float param)
        Sets the float value of a pointer parameter.
        Parameters:
        pname - the parameter to set. Must be:
        POINT_FADE_THRESHOLD_SIZE
        param - the parameter value
        See Also:
        Reference Page
      • nglPointParameterfv

        public static void nglPointParameterfv​(int pname,
                                               long params)
        Unsafe version of: PointParameterfv
      • glPointParameterfv

        public static void glPointParameterfv​(int pname,
                                              java.nio.FloatBuffer params)
        Pointer version of PointParameterf.
        Parameters:
        pname - the parameter to set
        params - the parameter value
        See Also:
        Reference Page
      • nglPointParameteriv

        public static void nglPointParameteriv​(int pname,
                                               long params)
        Unsafe version of: PointParameteriv
      • glPointParameteriv

        public static void glPointParameteriv​(int pname,
                                              java.nio.IntBuffer params)
        Pointer version of PointParameteri.
        Parameters:
        pname - the parameter to set
        params - the parameter value
        See Also:
        Reference Page
      • glBlendFuncSeparate

        public static void glBlendFuncSeparate​(int sfactorRGB,
                                               int dfactorRGB,
                                               int sfactorAlpha,
                                               int dfactorAlpha)
        Specifies pixel arithmetic for RGB and alpha components separately.
        Parameters:
        sfactorRGB - how the red, green, and blue blending factors are computed. The initial value is GL_ONE.
        dfactorRGB - how the red, green, and blue destination blending factors are computed. The initial value is GL_ZERO.
        sfactorAlpha - how the alpha source blending factor is computed. The initial value is GL_ONE.
        dfactorAlpha - how the alpha destination blending factor is computed. The initial value is GL_ZERO.
        See Also:
        Reference Page
      • glMultiDrawArrays

        public static void glMultiDrawArrays​(int mode,
                                             int[] first,
                                             int[] count)
        Array version of: MultiDrawArrays
        See Also:
        Reference Page
      • glMultiDrawElements

        public static void glMultiDrawElements​(int mode,
                                               int[] count,
                                               int type,
                                               org.lwjgl.PointerBuffer indices)
        Array version of: MultiDrawElements
        See Also:
        Reference Page
      • glPointParameterfv

        public static void glPointParameterfv​(int pname,
                                              float[] params)
        Array version of: PointParameterfv
        See Also:
        Reference Page
      • glPointParameteriv

        public static void glPointParameteriv​(int pname,
                                              int[] params)
        Array version of: PointParameteriv
        See Also:
        Reference Page