Here you can find the source of RGB_GREEN(int rgb)
static private int RGB_GREEN(int rgb)
//package com.java2s; // I ported this from the mame project, this is their license public class Main { static private int RGB_GREEN(int rgb) { return (((rgb) >> 8) & 0xff); }/* w w w .j a va 2 s.c o m*/ }