OpenSceneGraph/src/osgPlugins/ive/BumpMapping.h
Robert Osfield 38efb23901 From Liang Aibin, added support for :
osgFX::Effect
    osgFX::AnisotropicLighting
    osgFX::BumpMapping
    osgFX::Cartoon
    osgFX::Scribe
    osgFX::SpecularHighlights.
2008-08-25 15:57:17 +00:00

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