25 lines
416 B
C++
25 lines
416 B
C++
#include "xgputexturefetchconstant.h"
|
|
|
|
XGpuTextureFetchConstant::XGpuTextureFetchConstant()
|
|
: XAsset()
|
|
{
|
|
SetName("GPU Texture Fetch Constant");
|
|
}
|
|
|
|
XGpuTextureFetchConstant::~XGpuTextureFetchConstant()
|
|
{
|
|
|
|
}
|
|
|
|
void XGpuTextureFetchConstant::ParseData(XDataStream *aStream)
|
|
{
|
|
Q_UNUSED(aStream);
|
|
|
|
// TODO: Fill in XGpuTextureFetchConstant::ParseData
|
|
}
|
|
|
|
void XGpuTextureFetchConstant::Clear()
|
|
{
|
|
|
|
}
|