sdl-gfx Reference Manual

Synopsis

public class Line {
    public    static int                color_h                   ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               x2,
                                                                    int16               y,
                                                                    uint32              color ) ;
    public    static int                rgba_h                    ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               x2,
                                                                    int16               y,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;
    public    static int                color_v                   ( SDL.Surface         dst,
                                                                    int16               x,
                                                                    int16               y1,
                                                                    int16               y2,
                                                                    uint32              color ) ;
    public    static int                rgba_v                    ( SDL.Surface         dst,
                                                                    int16               x,
                                                                    int16               y1,
                                                                    int16               y2,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;
    public    static int                color                     ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uint32              color ) ;
    public    static int                rgba                      ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;
    public    static int                color_aa                  ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uint32              color ) ;
    public    static int                rgba_aa                   ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;
}

Line Description

Details

Constructor Details

Field Details

Signal Details

Property Details

Method Details

color_h ()
    public    static int                color_h                   ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               x2,
                                                                    int16               y,
                                                                    uint32              color ) ;		

rgba_h ()
    public    static int                rgba_h                    ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               x2,
                                                                    int16               y,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;		

color_v ()
    public    static int                color_v                   ( SDL.Surface         dst,
                                                                    int16               x,
                                                                    int16               y1,
                                                                    int16               y2,
                                                                    uint32              color ) ;		

rgba_v ()
    public    static int                rgba_v                    ( SDL.Surface         dst,
                                                                    int16               x,
                                                                    int16               y1,
                                                                    int16               y2,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;		

color ()
    public    static int                color                     ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uint32              color ) ;		

rgba ()
    public    static int                rgba                      ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;		

color_aa ()
    public    static int                color_aa                  ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uint32              color ) ;		

rgba_aa ()
    public    static int                rgba_aa                   ( SDL.Surface         dst,
                                                                    int16               x1,
                                                                    int16               y1,
                                                                    int16               x2,
                                                                    int16               y2,
                                                                    uchar               r,
                                                                    uchar               g,
                                                                    uchar               b,
                                                                    uchar               a ) ;		


Created by Valadoc