You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/components/terrain/material.hpp

58 lines
1.2 KiB
C++

#ifndef COMPONENTS_TERRAIN_MATERIAL_H
#define COMPONENTS_TERRAIN_MATERIAL_H
10 years ago
#include <osgFX/Technique>
#include <osgFX/Effect>
10 years ago
#include "defs.hpp"
namespace osg
{
class Texture2D;
}
namespace Terrain
{
10 years ago
class FixedFunctionTechnique : public osgFX::Technique
{
public:
10 years ago
FixedFunctionTechnique(
const std::vector<osg::ref_ptr<osg::Texture2D> >& layers,
const std::vector<osg::ref_ptr<osg::Texture2D> >& blendmaps);
10 years ago
protected:
virtual void define_passes() {}
};
10 years ago
class Effect : public osgFX::Effect
{
public:
Effect(
const std::vector<osg::ref_ptr<osg::Texture2D> >& layers,
const std::vector<osg::ref_ptr<osg::Texture2D> >& blendmaps);
10 years ago
virtual bool define_techniques();
10 years ago
virtual const char *effectName() const
{
return nullptr;
10 years ago
}
virtual const char *effectDescription() const
{
return nullptr;
10 years ago
}
virtual const char *effectAuthor() const
{
return nullptr;
10 years ago
}
private:
10 years ago
std::vector<osg::ref_ptr<osg::Texture2D> > mLayers;
std::vector<osg::ref_ptr<osg::Texture2D> > mBlendmaps;
};
}
#endif