Files
OpenSceneGraph/src/osgPlugins/ive/AnisotropicLighting.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
321 B
C++

#ifndef IVE_ANISOTROPICLIGHTING
#define IVE_ANISOTROPICLIGHTING 1
#include <osgFX/AnisotropicLighting>
#include "ReadWrite.h"
namespace ive{
class AnisotropicLighting : public osgFX::AnisotropicLighting, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif