From Daniel Sjölie - added support for multitexured flt files.
This commit is contained in:
36
src/osgPlugins/flt/UVListRecord.cpp
Normal file
36
src/osgPlugins/flt/UVListRecord.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
// UVListRecord.cpp
|
||||
|
||||
#include "flt.h"
|
||||
#include "Registry.h"
|
||||
#include "UVListRecord.h"
|
||||
|
||||
using namespace flt;
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// UVListRecord
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
RegisterRecordProxy<UVListRecord> g_UVListProxy;
|
||||
|
||||
UVListRecord::UVListRecord()
|
||||
{
|
||||
CERR << "UVListRecord created\n";
|
||||
}
|
||||
|
||||
|
||||
// virtual
|
||||
UVListRecord::~UVListRecord()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// virtual
|
||||
void UVListRecord::endian()
|
||||
{
|
||||
|
||||
SUVList *pSUVList = (SUVList*)getData();
|
||||
|
||||
ENDIAN( pSUVList->layers );
|
||||
}
|
||||
Reference in New Issue
Block a user