2025-09-03 13:08:47 -04:00
|
|
|
#ifndef XGPUVERTEXFETCHCONSTANT_H
|
|
|
|
|
#define XGPUVERTEXFETCHCONSTANT_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
#include "xgpuvertexrawrequest.h"
|
|
|
|
|
|
|
|
|
|
class XGpuVertexFetchConstant : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-09-10 21:58:26 -04:00
|
|
|
explicit XGpuVertexFetchConstant();
|
|
|
|
|
~XGpuVertexFetchConstant();
|
2025-09-03 13:08:47 -04:00
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
virtual void ParseData(XDataStream* aStream) override;
|
2025-09-03 13:08:47 -04:00
|
|
|
virtual void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
XGpuVertexRawRequest mRequest;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XGPUVERTEXFETCHCONSTANT_H
|