StCols.c revision 1ab64890
1/* $Xorg: StCols.c,v 1.3 2000/08/17 19:44:56 cpqbld Exp $ */
2
3/*
4 * Code and supporting documentation (c) Copyright 1990 1991 Tektronix, Inc.
5 * 	All Rights Reserved
6 *
7 * This file is a component of an X Window System-specific implementation
8 * of Xcms based on the TekColor Color Management System.  Permission is
9 * hereby granted to use, copy, modify, sell, and otherwise distribute this
10 * software and its documentation for any purpose and without fee, provided
11 * that this copyright, permission, and disclaimer notice is reproduced in
12 * all copies of this software and in supporting documentation.  TekColor
13 * is a trademark of Tektronix, Inc.
14 *
15 * Tektronix makes no representation about the suitability of this software
16 * for any purpose.  It is provided "as is" and with all faults.
17 *
18 * TEKTRONIX DISCLAIMS ALL WARRANTIES APPLICABLE TO THIS SOFTWARE,
19 * INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 * PARTICULAR PURPOSE.  IN NO EVENT SHALL TEKTRONIX BE LIABLE FOR ANY
21 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
22 * RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF
23 * CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
24 * CONNECTION WITH THE USE OR THE PERFORMANCE OF THIS SOFTWARE.
25 *
26 *
27 *	NAME
28 *		XcmsStCols.c
29 *
30 *	DESCRIPTION
31 *		Source for XcmsStoreColors
32 *
33 *
34 */
35/* $XFree86: xc/lib/X11/StCols.c,v 1.3 2001/01/17 19:41:44 dawes Exp $ */
36
37#ifdef HAVE_CONFIG_H
38#include <config.h>
39#endif
40#include "Xlibint.h"
41#include "Xcmsint.h"
42#include "Cv.h"
43
44
45/************************************************************************
46 *									*
47 *			PUBLIC ROUTINES					*
48 *									*
49 ************************************************************************/
50
51/*
52 *	NAME
53 *		XcmsStoreColors - Store Colors
54 *
55 *	SYNOPSIS
56 */
57Status
58XcmsStoreColors(
59    Display *dpy,
60    Colormap colormap,
61    XcmsColor *pColors_in,
62    unsigned int nColors,
63    Bool *pCompressed)
64/*
65 *	DESCRIPTION
66 *		Given device-dependent or device-independent color
67 *		specifications, this routine will convert them to X RGB
68 *		values then use it in a call to XStoreColors.
69 *
70 *	RETURNS
71 *		XcmsFailure if failed;
72 *		XcmsSuccess if it succeeded without gamut compression;
73 *		XcmsSuccessWithCompression if it succeeded with gamut
74 *			compression;
75 *
76 *		Since XStoreColors has no return value, this routine
77 *		does not return color specifications of the colors actually
78 *		stored.
79 */
80{
81    XcmsColor Color1;
82    XcmsColor *pColors_tmp;
83    Status retval;
84
85    /*
86     * Make copy of array of color specifications so we don't
87     * overwrite the contents.
88     */
89    if (nColors > 1) {
90	pColors_tmp = (XcmsColor *) Xmalloc(nColors * sizeof(XcmsColor));
91    } else {
92	pColors_tmp = &Color1;
93    }
94    memcpy((char *)pColors_tmp, (char *)pColors_in,
95 	    nColors * sizeof(XcmsColor));
96
97    /*
98     * Call routine to store colors using the copied color structures
99     */
100    retval = _XcmsSetGetColors (XStoreColors, dpy, colormap,
101	    pColors_tmp, nColors, XcmsRGBFormat, pCompressed);
102
103    /*
104     * Free copies as needed.
105     */
106    if (nColors > 1) {
107	Xfree((char *)pColors_tmp);
108    }
109
110    /*
111     * Ah, finally return.
112     */
113    return(retval);
114}
115