зеркало из https://github.com/mozilla/pjs.git
60 строки
1.7 KiB
C
60 строки
1.7 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (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.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/* -*- Mode: C; tab-width: 4 -*-
|
|
* il.h --- Exported image library interface
|
|
*
|
|
* $Id: il.h,v 1.3 1999-11-06 03:31:23 dmose%mozilla.org Exp $
|
|
*/
|
|
|
|
|
|
/*
|
|
* global defines for image lib users
|
|
*/
|
|
|
|
#ifndef _IL_H
|
|
#define _IL_H
|
|
|
|
#include "ntypes.h"
|
|
|
|
/* attr values */
|
|
#define IL_ATTR_RDONLY 0
|
|
#define IL_ATTR_RW 1
|
|
#define IL_ATTR_TRANSPARENT 2
|
|
#define IL_ATTR_HONOR_INDEX 4
|
|
|
|
#undef ABS
|
|
#define ABS(x) (((x) < 0) ? -(x) : (x))
|
|
|
|
/* A fast but limited, perceptually-weighted color distance function */
|
|
#define IL_COLOR_DISTANCE(r1, r2, g1, g2, b1, b2) \
|
|
((ABS((g1) - (g2)) << 2) + (ABS((r1) - (r2)) << 1) + (ABS((b1) - (b2))))
|
|
|
|
/* We don't distinguish between colors that are "closer" together
|
|
than this. The appropriate setting is a subjective matter. */
|
|
#define IL_CLOSE_COLOR_THRESHOLD 6
|
|
|
|
|
|
#endif /* _IL_H */
|
|
|
|
|