38efb23901
osgFX::Effect osgFX::AnisotropicLighting osgFX::BumpMapping osgFX::Cartoon osgFX::Scribe osgFX::SpecularHighlights.
16 lines
281 B
C++
16 lines
281 B
C++
#ifndef IVE_BUMPMAPPING
|
|
#define IVE_BUMPMAPPING 1
|
|
|
|
#include <osgFX/BumpMapping>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class BumpMapping : public osgFX::BumpMapping, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|