Package org.yajsdl.jna

Examples of org.yajsdl.jna.SDL_Color$ByReference


    /**
     * レシーバを 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

Related Classes of org.yajsdl.jna.SDL_Color$ByReference

Copyright © 2018 www.massapicom. 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.