1 2/* 3 * Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc. 4 * All Rights Reserved 5 * 6 * This file is a component of an X Window System-specific implementation 7 * of Xcms based on the TekColor Color Management System. Permission is 8 * hereby granted to use, copy, modify, sell, and otherwise distribute this 9 * software and its documentation for any purpose and without fee, provided 10 * that this copyright, permission, and disclaimer notice is reproduced in 11 * all copies of this software and in supporting documentation. TekColor 12 * is a trademark of Tektronix, Inc. 13 * 14 * Tektronix makes no representation about the suitability of this software 15 * for any purpose. It is provided "as is" and with all faults. 16 * 17 * TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE, 18 * INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 19 * PARTICULAR PURPOSE. IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY 20 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER 21 * RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF 22 * CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 23 * CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE. 24 * 25 * 26 * NAME 27 * XcmsAllCol.c 28 * 29 * DESCRIPTION 30 * Source for XcmsAllocColor 31 * 32 * 33 */ 34 35#ifdef HAVE_CONFIG_H 36#include <config.h> 37#endif 38#include "Xlibint.h" 39#include "Xcmsint.h" 40#include "Cv.h" 41 42 43/* 44 * NAME 45 * XcmsAllocColor - Allocate Color 46 * 47 * SYNOPSIS 48 */ 49Status 50XcmsAllocColor( 51 Display *dpy, 52 Colormap colormap, 53 XcmsColor *pXcmsColor_in_out, 54 XcmsColorFormat result_format) 55/* 56 * DESCRIPTION 57 * Given a device-dependent or device-independent color 58 * specification, XcmsAllocColor will convert it to X RGB 59 * values then use it in a call to XAllocColor. 60 * 61 * RETURNS 62 * XcmsFailure if failed; 63 * XcmsSuccess if it succeeded without gamut compression; 64 * XcmsSuccessWithCompression if it succeeded with gamut 65 * compression; 66 * 67 * Also returns the pixel value of the color cell and a color 68 * specification of the color actually stored. 69 * 70 */ 71{ 72 return(_XcmsSetGetColor(XAllocColor, dpy, colormap, pXcmsColor_in_out, 73 result_format, (Bool *)NULL)); 74} 75