multisample.cpp

来自「最新osg包」· C++ 代码 · 共 58 行

CPP
58
字号
/********************************************************************** * *    FILE:            Multisample.cpp * *    DESCRIPTION:    Read/Write osg::Multisample in binary format to disk. * *    CREATED BY:     Nikolaus Hanekamp *                     * *    HISTORY:        Created 15.06.2007 * **********************************************************************/#include "Exception.h"#include "Multisample.h"#include "Object.h"using namespace ive;void Multisample::write(DataOutputStream* out){    // Write CullFace's identification.    out->writeInt(IVEMULTISAMPLE);    // If the osg class is inherited by any other class we should also write this to file.    osg::Object*  obj = dynamic_cast<osg::Object*>(this);    if(obj){        ((ive::Object*)(obj))->write(out);    }    else        throw Exception("Multisample::write(): Could not cast this osg::Multisample to an osg::Object.");    // Write Multisample's properties.    out->writeFloat(getCoverage());    out->writeBool(getInvert());    out->writeInt(getHint());}void Multisample::read(DataInputStream* in){    // Peek on Multisample's identification.    int id = in->peekInt();    if(id == IVEMULTISAMPLE){        // Read Multisample's identification.        id = in->readInt();        // If the osg class is inherited by any other class we should also read this from file.        osg::Object*  obj = dynamic_cast<osg::Object*>(this);        if(obj){            ((ive::Object*)(obj))->read(in);        }        else            throw Exception("Multisample::read(): Could not cast this osg::Multisample to an osg::Object.");        // Read Multisample's properties        setCoverage(in->readFloat());        setInvert(in->readBool());        setHint((Mode) in->readInt());    }    else{        throw Exception("Multisample::read(): Expected Multisample identification.");    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?