Add xgpuvertexfetchconstant structures

This commit is contained in:
Nicholas Johnson 2025-09-03 13:08:47 -04:00
parent be21cf40cb
commit cdef686ec4
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#include "xgpuvertexfetchconstant.h"
XGpuVertexFetchConstant::XGpuVertexFetchConstant()
: XAsset()
, mRequest()
, mDword()
{
}
void XGpuVertexFetchConstant::ParseData(QDataStream *aStream)
{
}
void XGpuVertexFetchConstant::Clear()
{
}

View File

@ -0,0 +1,20 @@
#ifndef XGPUVERTEXFETCHCONSTANT_H
#define XGPUVERTEXFETCHCONSTANT_H
#include "xasset.h"
#include "xgpuvertexrawrequest.h"
class XGpuVertexFetchConstant : public XAsset
{
public:
XGpuVertexFetchConstant();
virtual void ParseData(QDataStream* aStream) override;
virtual void Clear() override;
private:
XGpuVertexRawRequest mRequest;
unsigned int mDword[2];
};
#endif // XGPUVERTEXFETCHCONSTANT_H