Java Path Normalize normalize_color_path(int eff_color_path)

Here you can find the source of normalize_color_path(int eff_color_path)

Description

Rasterizer inlines

License

Open Source License

Declaration


static private int normalize_color_path(int eff_color_path) 

Method Source Code

//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;
    }
}

Related

  1. normalize(String path)
  2. normalize(String path)
  3. normalize(String path)
  4. normalize(String path, String separator)
  5. normalize(String pathname, int len, int off)
  6. normalizeAllSeparators(String path)
  7. normalizeBasePath(String basePath)
  8. normalizeDbPath(String databasePath)
  9. normalizeDotSegment(String path)