Color.java :  » Game » beginning-android-games » com » badlogic » androidgames » framework » Android Open Source

Android Open Source » Game » beginning android games 
beginning android games » com » badlogic » androidgames » framework » Color.java
package com.badlogic.androidgames.framework;

public class Color {
    public static int convert (int r, int g, int b, int a) {
        return ((a & 0xff) << 24) |
               ((r & 0xff) << 16) |
               ((g & 0xff) << 8) |
               ((b & 0xff));               
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.