Add xgpuvertexfetchconstant structures
This commit is contained in:
parent
be21cf40cb
commit
cdef686ec4
19
libs/xassets/xgpuvertexfetchconstant.cpp
Normal file
19
libs/xassets/xgpuvertexfetchconstant.cpp
Normal file
@ -0,0 +1,19 @@
|
||||
#include "xgpuvertexfetchconstant.h"
|
||||
|
||||
XGpuVertexFetchConstant::XGpuVertexFetchConstant()
|
||||
: XAsset()
|
||||
, mRequest()
|
||||
, mDword()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XGpuVertexFetchConstant::ParseData(QDataStream *aStream)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XGpuVertexFetchConstant::Clear()
|
||||
{
|
||||
|
||||
}
|
||||
20
libs/xassets/xgpuvertexfetchconstant.h
Normal file
20
libs/xassets/xgpuvertexfetchconstant.h
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user