/* $Xorg: plogic.c,v 1.5 2000/08/17 19:47:28 cpqbld Exp $ */ /**** module plogic.c ****/ /****************************************************************************** Copyright 1993, 1994, 1998 The Open Group All Rights Reserved. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. NOTICE This software is being provided by AGE Logic, Inc. under the following license. By obtaining, using and/or copying this software, you agree that you have read, understood, and will comply with these terms and conditions: Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose and without fee or royalty and to grant others any or all rights granted herein is hereby granted, provided that you agree to comply with the following copyright notice and statements, including the disclaimer, and that the same appears on all copies and derivative works of the software and documentation you make. "Copyright 1993, 1994 by AGE Logic, Inc." THIS SOFTWARE IS PROVIDED "AS IS". AGE LOGIC MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not limitation, AGE LOGIC MAKE NO REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE SOFTWARE DOES NOT INFRINGE THIRD-PARTY PROPRIETARY RIGHTS. AGE LOGIC SHALL BEAR NO LIABILITY FOR ANY USE OF THIS SOFTWARE. IN NO EVENT SHALL EITHER PARTY BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOSS OF PROFITS, REVENUE, DATA OR USE, INCURRED BY EITHER PARTY OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT OR BASED ON A WARRANTY, EVEN IF AGE LOGIC LICENSEES HEREUNDER HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. The name of AGE Logic, Inc. may not be used in advertising or publicity pertaining to this software without specific, written prior permission from AGE Logic. Title to this software shall at all times remain with AGE Logic, Inc. ***************************************************************************** plogic.c -- DIXIE routines for managing the Logical element Robert NC Shelley -- AGE Logic, Inc. April 1993 *****************************************************************************/ /* $XFree86: xc/programs/Xserver/XIE/dixie/process/plogic.c,v 3.4 2001/01/17 22:12:53 dawes Exp $ */ #define _XIEC_PLOGIC /* * Include files */ /* * Core X Includes */ #define NEED_EVENTS #include #include /* * XIE Includes */ #include /* * Server XIE Includes */ #include #include #include #include /* * routines internal to this module */ static Bool PrepLogic(floDefPtr flo, peDefPtr ped); /* * dixie entry points */ static diElemVecRec pLogicVec = { PrepLogic /* prepare for analysis and execution */ }; /*------------------------------------------------------------------------ ----------------------- routine: make a logical element -------------------- ------------------------------------------------------------------------*/ peDefPtr MakeLogic(floDefPtr flo, xieTypPhototag tag, xieFlo *pe) { int inputs; peDefPtr ped; inFloPtr inFlo; pLogicDefPtr pvt; ELEMENT(xieFloLogical); ELEMENT_SIZE_MATCH(xieFloLogical); ELEMENT_NEEDS_1_INPUT(src1); inputs = 1 + (stuff->src2 ? 1 : 0) + (stuff->domainPhototag ? 1 :0); if (!(ped = MakePEDef(inputs, (CARD32)stuff->elemLength<<2, sizeof(pLogicDefRec)))) FloAllocError(flo, tag, xieElemLogical, return(NULL)); ped->diVec = &pLogicVec; ped->phototag = tag; ped->flags.process = TRUE; raw = (xieFloLogical *)ped->elemRaw; /* * copy the client element parameters (swap if necessary) */ if (flo->reqClient->swapped) { raw->elemType = stuff->elemType; raw->elemLength = stuff->elemLength; cpswaps(stuff->src1, raw->src1); cpswaps(stuff->src2, raw->src2); cpswapl(stuff->domainOffsetX, raw->domainOffsetX); cpswapl(stuff->domainOffsetY, raw->domainOffsetY); cpswaps(stuff->domainPhototag,raw->domainPhototag); raw->operator = stuff->operator; raw->bandMask = stuff->bandMask; cpswapl(stuff->constant0, raw->constant0); cpswapl(stuff->constant1, raw->constant1); cpswapl(stuff->constant2, raw->constant2); } else memcpy((char *)raw, (char *)stuff, sizeof(xieFloLogical)); if(!raw->src2) { /* convert constants */ pvt = (pLogicDefPtr)ped->elemPvt; pvt->constant[0] = ConvertFromIEEE(raw->constant0); pvt->constant[1] = ConvertFromIEEE(raw->constant1); pvt->constant[2] = ConvertFromIEEE(raw->constant2); } /* assign phototags to inFlos */ inFlo = ped->inFloLst; inFlo[SRCt1].srcTag = raw->src1; if (raw->src2) inFlo[SRCt2].srcTag = raw->src2; if(raw->domainPhototag) inFlo[ped->inCnt-1].srcTag = raw->domainPhototag; return ped; } /* end MakeLogic */ /*------------------------------------------------------------------------ ---------------- routine: prepare for analysis and execution ------------- ------------------------------------------------------------------------*/ static Bool PrepLogic(floDefPtr flo, peDefPtr ped) { xieFloLogical *raw = (xieFloLogical *)ped->elemRaw; inFloPtr ind, in2, in1 = &ped->inFloLst[SRCt1]; outFloPtr dom, sr2, sr1 = &in1->srcDef->outFlo; outFloPtr dst = &ped->outFlo; CARD8 bmask = raw->bandMask; int b; if (IsntConstrained(sr1->format[0].class)) MatchError(flo,ped, return(FALSE)); /* Make sure levels are a power of 2 */ for (b = 0; b < sr1->bands; b++) if ((bmask & (1<format[b].levels & (sr1->format[b].levels - 1))) MatchError(flo,ped, return(FALSE)); /* check out our second source */ if(raw->src2) { in2 = &ped->inFloLst[SRCt2]; sr2 = &in2->srcDef->outFlo; if(sr1->bands != sr2->bands) MatchError(flo,ped, return(FALSE)); in2->bands = sr2->bands; for (b = 0; b < sr1->bands; b++) { if ((bmask & (1<format[b].class != sr2->format[b].class || sr1->format[b].levels != sr2->format[b].levels) MatchError(flo,ped, return(FALSE)); } } else sr2 = NULL; /* check out our process domain */ if(raw->domainPhototag) { ind = &ped->inFloLst[ped->inCnt-1]; dom = &ind->srcDef->outFlo; if(IsntDomain(dom->format[0].class) || (ind->bands = dom->bands) != 1) DomainError(flo,ped,raw->domainPhototag, return(FALSE)); ind->format[0] = dom->format[0]; } else dom = NULL; /* check out our operator */ switch(raw->operator) { case GXclear: /* 0x0 0 */ case GXand: /* 0x1 src-1 AND src-2 */ case GXandReverse: /* 0x2 src-1 AND (NOT src-2) */ case GXcopy: /* 0x3 src-1 */ case GXandInverted: /* 0x4 (NOT src-1) AND src-2 */ case GXnoop: /* 0x5 src-2 */ case GXxor: /* 0x6 src-1 XOR src-2 */ case GXor: /* 0x7 src-1 OR src-2 */ case GXnor: /* 0x8 (NOT src-1) AND (NOT src-2) */ case GXequiv: /* 0x9 (NOT src-1) XOR src-2 */ case GXinvert: /* 0xa NOT src-2 */ case GXorInverted: /* 0xd (NOT src-1) OR src-2 */ case GXorReverse: /* 0xb src-1 OR (NOT src-2) */ case GXnand: /* 0xe (NOT src-1) OR (NOT src-2) */ case GXset: /* 0xf 1 */ case GXcopyInverted: /* 0xc NOT src-1 */ break; default: OperatorError(flo,ped,raw->operator, return(FALSE)); } /* grab a copy of the input attributes and propagate them to output */ dst->bands = in1->bands = sr1->bands; for(b = 0; b < dst->bands; b++) { dst->format[b] = in1->format[b] = sr1->format[b]; if(sr2) in2->format[b] = sr2->format[b]; } return TRUE; } /* end PrepLogic */ /* end module plogic.c */