XPlor/libs/xassets/xgfxtexture.cpp

30 lines
321 B
C++
Raw Normal View History

2025-09-03 13:02:31 -04:00
#include "xgfxtexture.h"
#include "xd3dbasetexture.h"
XGfxTexture::XGfxTexture()
: XAsset()
2025-09-05 18:35:17 -04:00
, mBaseMap()
, mMap()
, mVolMap()
, mCubeMap()
, mLoadDef()
2025-08-17 13:14:17 -04:00
{
2025-09-03 13:02:31 -04:00
2025-08-17 13:14:17 -04:00
}
2025-09-03 13:02:31 -04:00
XGfxTexture::~XGfxTexture()
2025-08-17 13:14:17 -04:00
{
2025-09-03 13:02:31 -04:00
2025-08-17 13:14:17 -04:00
}
2025-09-03 13:02:31 -04:00
void XGfxTexture::ParseData(QDataStream *aStream)
2025-08-17 13:14:17 -04:00
{
2025-09-03 13:02:31 -04:00
2025-08-17 13:14:17 -04:00
}
2025-09-03 13:02:31 -04:00
void XGfxTexture::Clear()
2025-08-17 13:14:17 -04:00
{
2025-09-03 13:02:31 -04:00
2025-08-17 13:14:17 -04:00
}