package org.ripple.power.ui.projector.core.graphics.filter; /** * Copyright 2008 - 2010 * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. * * @project loonframework * @author chenpeng * @email:ceponline@yahoo.com.cn * @version 0.1 */ public interface ImageFilterType { public final static int NoneFilter = 0; public final static int GreenFilter = 1; public final static int RedBlueSwapFilter = 2; public final static int YellowInvertFilter = 3; public final static int PsychedeliaFilter = 4; public final static int RedFilter = 5; public final static int MagentaFilter = 6; public final static int PinkFilter = 7; public final static int YellowFilter = 8; public final static int BlueFilter = 9; public final static int SwapFilter = 10; public final static int GrayFilter = 11; public final static int BlackWhiteFilter = 12; public final static int RateFilter = 13; public final static int WhiteFilter = 14; public final static int AllRedFilter = 15; public final static int AllWhiteFilter = 16; public final static int AllBlackFilter = 17; }