feature/test #9
20
libs/xassets/xgputexturesizestack.cpp
Normal file
20
libs/xassets/xgputexturesizestack.cpp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#include "xgputexturesizestack.h"
|
||||||
|
|
||||||
|
XGpuTextureSizeStack::XGpuTextureSizeStack()
|
||||||
|
: XAsset()
|
||||||
|
, mWidth(0)
|
||||||
|
, mHeight(0)
|
||||||
|
, mDepth(0)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XGpuTextureSizeStack::ParseData(QDataStream *aStream)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XGpuTextureSizeStack::Clear()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
20
libs/xassets/xgputexturesizestack.h
Normal file
20
libs/xassets/xgputexturesizestack.h
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#ifndef XGPUTEXTURESIZESTACK_H
|
||||||
|
#define XGPUTEXTURESIZESTACK_H
|
||||||
|
|
||||||
|
#include "xasset.h"
|
||||||
|
|
||||||
|
class XGpuTextureSizeStack : public XAsset
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit XGpuTextureSizeStack();
|
||||||
|
|
||||||
|
void ParseData(QDataStream *aStream) override;
|
||||||
|
void Clear() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
quint32 mWidth;
|
||||||
|
quint32 mHeight;
|
||||||
|
quint32 mDepth;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // XGPUTEXTURESIZESTACK_H
|
||||||
Loading…
x
Reference in New Issue
Block a user