Add xmaterialvertexstreamrouting structures
This commit is contained in:
parent
7cf9ac8d4c
commit
dcab86b1ed
17
libs/xassets/xmaterialvertexstreamrouting.cpp
Normal file
17
libs/xassets/xmaterialvertexstreamrouting.cpp
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#include "xmaterialvertexstreamrouting.h"
|
||||||
|
|
||||||
|
XMaterialVertexStreamRouting::XMaterialVertexStreamRouting()
|
||||||
|
: XAsset()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XMaterialVertexStreamRouting::Clear()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XMaterialVertexStreamRouting::ParseData(QDataStream *aStream)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
21
libs/xassets/xmaterialvertexstreamrouting.h
Normal file
21
libs/xassets/xmaterialvertexstreamrouting.h
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#ifndef XMATERIALVERTEXSTREAMROUTING_H
|
||||||
|
#define XMATERIALVERTEXSTREAMROUTING_H
|
||||||
|
|
||||||
|
#include "xasset.h"
|
||||||
|
#include "xmaterialstreamrouting.h"
|
||||||
|
#include "xd3dvertexdeclaration.h"
|
||||||
|
|
||||||
|
class XMaterialVertexStreamRouting : public XAsset
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
XMaterialVertexStreamRouting();
|
||||||
|
|
||||||
|
virtual void Clear() override;
|
||||||
|
virtual void ParseData(QDataStream *aStream) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
XMaterialStreamRouting mData[16];
|
||||||
|
XD3DVertexDeclaration mDecl[15];
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // XMATERIALVERTEXSTREAMROUTING_H
|
||||||
Loading…
x
Reference in New Issue
Block a user