Examples of SDL_Palette


Examples of org.yajsdl.jna.SDL_Palette

    /**
     *
     */
    public SDL_Palette toSource() {
        int i = 0;
        SDL_Palette ret = new SDL_Palette();
        SDL_Color[] native_colors = new SDL_Color[this.size()];

        for ( Iterator<Color> it = this.content_.iterator(); it.hasNext(); ) {
            native_colors[i] = it.next().toSource();
            ++ i;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.