#include <bfxpixop.h>
Inheritance diagram for BfxColourThresholdPixelOpPseudo:
Protected Member Functions | |
virtual BOOL | IsPixelReallyInRegion (INT32 x, INT32 y) |
To be overriden by derived classes. | |
Private Member Functions | |
CC_DECLARE_DYNCREATE (BfxColourThresholdPixelOpPseudo) |
Definition at line 509 of file bfxpixop.h.
|
|
|
To be overriden by derived classes.
Reimplemented from BfxPixelOp. Definition at line 961 of file bfxpixop.cpp. 00962 { 00963 // DWORD Pixel = (x+y*WidthRounded)>>XShift; 00964 // DWORD shift = x & XMask; 00965 DWORD tval=__bfx_pseudopixel(pT,x,y); 00966 return (__bfx_pseudopixel(pB,x,y) != tval) && (Colour == tval); 00967 }
|