XPlor/libs/xassets/xgfxpixelshaderloaddef.h

36 lines
568 B
C
Raw Permalink Normal View History

2025-09-03 13:07:19 -04:00
#ifndef XGFXPIXELSHADERLOADDEF_H
#define XGFXPIXELSHADERLOADDEF_H
#include "xasset.h"
#include <QVector>
class XGfxPixelShaderLoadDef : public XAsset
{
public:
explicit XGfxPixelShaderLoadDef();
~XGfxPixelShaderLoadDef();
2025-09-07 12:36:08 -04:00
quint16 GetPhysicalPartSize() const;
quint16 GetCachedPartSize() const;
2025-09-10 21:58:26 -04:00
void ParseData(XDataStream *aStream) override;
2025-09-03 13:07:19 -04:00
void Clear() override;
private:
2025-09-07 12:36:08 -04:00
QByteArray mCachedPart;
QByteArray mPhysicalPart;
2025-09-03 13:07:19 -04:00
quint16 mCachedPartSize;
quint16 mPhysicalPartSize;
};
#endif // XGFXPIXELSHADERLOADDEF_H