You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
640 B
28 lines
640 B
// RastColl.h - declaration of the CRastCollection class
|
|
//
|
|
// Copyright Microsoft Corporation, 1997.
|
|
//
|
|
|
|
#ifndef _RASTCOLL_H_
|
|
#define _RASTCOLL_H_
|
|
|
|
typedef struct _RASTFNREC {
|
|
DWORD rgdwRastCap[RASTCAPRECORD_SIZE];
|
|
PFNRENDERSPANS pfnRastFunc;
|
|
int iIndex; // index for disable mask
|
|
char pszRastDesc[128]; // brief human description of monolith
|
|
} RASTFNREC;
|
|
|
|
class CRastCollection {
|
|
|
|
private:
|
|
|
|
RASTFNREC* RastFnLookup(CRastCapRecord*,RASTFNREC*,int);
|
|
|
|
public:
|
|
|
|
RASTFNREC* Search(PD3DI_RASTCTX,CRastCapRecord*);
|
|
|
|
};
|
|
|
|
#endif // _RASTCOLL_H_
|