Here you can find the source of normalize_color_path(int eff_color_path)
static private int normalize_color_path(int eff_color_path)
//package com.java2s; // I ported this from the mame project, this is their license public class Main { /************************************* */*from ww w .ja va 2 s . c o m*/ * Rasterizer inlines * *************************************/ static private int normalize_color_path(int eff_color_path) { /* ignore the subpixel adjust and texture enable flags */ eff_color_path &= ~((1 << 26) | (1 << 27)); return eff_color_path; } }