Examples of SDL_Color


Examples of org.yajsdl.jna.SDL_Color

    /**
     * レシーバを SDL_Color オブジェクトに変換して返します。
     */
    public SDL_Color toSource() {
        SDL_Color ret = new SDL_Color();

        ret.r = this.red_;
        ret.g = this.green_;
        ret.b = this.blue_;
        ret.unused = this.alpha_;
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.