/* Copyright (C) 1998 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: gxropc.h,v 1.2.6.1.2.1 2003/01/17 00:49:04 giles Exp $ */ /* Internals for RasterOp compositing */ #ifndef gxropc_INCLUDED # define gxropc_INCLUDED #include "gsropc.h" #include "gxcomp.h" /* Define RasterOp-compositing objects. */ typedef struct gs_composite_rop_s { gs_composite_common; gs_composite_rop_params_t params; } gs_composite_rop_t; #define private_st_composite_rop() /* in gsropc.c */\ gs_private_st_ptrs1(st_composite_rop, gs_composite_rop_t,\ "gs_composite_rop_t", composite_rop_enum_ptrs, composite_rop_reloc_ptrs,\ params.texture) /* * Initialize a RasterOp compositing function from parameters. * We make this visible so that clients can allocate gs_composite_rop_t * objects on the stack, to reduce memory manager overhead. */ void gx_init_composite_rop(P2(gs_composite_rop_t * pcte, const gs_composite_rop_params_t * params)); #endif /* gxropc_INCLUDED */