2003-05-24 03:51:12 +08:00
|
|
|
#ifndef IVE_BLENDFUNC
|
|
|
|
#define IVE_BLENDFUNC 1
|
|
|
|
|
|
|
|
#include <osg/BlendFunc>
|
|
|
|
#include "ReadWrite.h"
|
|
|
|
|
|
|
|
namespace ive{
|
2003-05-24 22:42:00 +08:00
|
|
|
class BlendFunc : public osg::BlendFunc, public ReadWrite {
|
2003-05-24 03:51:12 +08:00
|
|
|
public:
|
|
|
|
void write(DataOutputStream* out);
|
|
|
|
void read(DataInputStream* in);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|