1 /* Copyright (C) 2001-2019 Artifex Software, Inc.
2    All Rights Reserved.
3 
4    This software is provided AS-IS with no warranty, either express or
5    implied.
6 
7    This software is distributed under license and may not be copied,
8    modified or distributed except as expressly authorized under the terms
9    of the license contained in the file LICENSE in this distribution.
10 
11    Refer to licensing information at http://www.artifex.com or contact
12    Artifex Software, Inc.,  1305 Grant Avenue - Suite 200, Novato,
13    CA 94945, U.S.A., +1(415)492-9861, for further information.
14 */
15 
16 /* x-bit-per-pixel "memory" (stored bitmap) device. */
17 /* This is used as a prototype for a memory device for the planar device
18    to make use of in creating its structure for bit depths greater than
19    64.  Note that the 256 is a place holder.   */
20 #include "memory_.h"
21 #include "gx.h"
22 #include "gxdevice.h"
23 #include "gxdevmem.h"		/* semi-public definitions */
24 #include "gdevmem.h"		/* private definitions */
25 
26 /* The device descriptor. */
27 const gx_device_memory mem_x_device =
28     mem_device("imagex", 256, 0, NULL, NULL, NULL, NULL, NULL, NULL);
29