47651d3c8d
Added .osg support for osg::Scissor. Added .ive support for osg::Viewport and osg::Scissor.
16 lines
256 B
C++
16 lines
256 B
C++
#ifndef IVE_VIEWPORT
|
|
#define IVE_VIEWPORT 1
|
|
|
|
#include <osg/Viewport>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class Viewport : public osg::Viewport, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|