This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

41
engine/PUREMAP.HPP Normal file
View File

@@ -0,0 +1,41 @@
#ifndef _ENGINE_PUREMAP_HPP_
#define _ENGINE_PUREMAP_HPP_
#ifndef _COMMON_WINDOWS_HPP_
#include <common/windows.hpp>
#endif
class PureEdge;
class PureMap
{
public:
PureMap(PureEdge *lpLeftEdge,PureEdge *lpRightEdge);
~PureMap();
private:
LONG mBitmapIndex;
LONG mxSource;
LONG mySource;
LONG mDestWidth;
LONG mxSourceStep;
LONG mySourceStep;
short mxDest;
short mxDestMax;
short myValue;
PureEdge *mlpLeftEdge;
PureEdge *mlpRightEdge;
};
inline
PureMap::PureMap(PureEdge *lpLeftEdge,PureEdge *lpRightEdge)
: mxSource(0), mySource(0), mDestWidth(0), mxSourceStep(0), mySourceStep(0),
mxDest(0), mxDestMax(0), myValue(0), mlpLeftEdge(lpLeftEdge),
mlpRightEdge(lpRightEdge)
{
}
inline
PureMap::~PureMap()
{
}
#endif