metaforce/Runtime/Graphics/Shaders/CRadarPaintShader.hpp

37 lines
784 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-04-07 05:35:09 +00:00
#include <array>
#include <vector>
2022-02-01 00:06:54 +00:00
//#include <boo/graphicsdev/IGraphicsDataFactory.hpp>
#include <zeus/CColor.hpp>
#include <zeus/CVector2f.hpp>
#include <zeus/CVector3f.hpp>
2017-04-07 05:35:09 +00:00
2021-04-10 08:42:06 +00:00
namespace metaforce {
class CTexture;
2017-04-07 05:35:09 +00:00
2018-12-08 05:30:43 +00:00
class CRadarPaintShader {
2017-04-07 05:35:09 +00:00
public:
2018-12-08 05:30:43 +00:00
struct Instance {
std::array<zeus::CVector3f, 4> pos;
std::array<zeus::CVector2f, 4> uv;
2018-12-08 05:30:43 +00:00
zeus::CColor color;
};
2017-04-07 05:35:09 +00:00
private:
2022-02-01 00:06:54 +00:00
// boo::ObjToken<boo::IGraphicsBufferD> m_vbo;
// boo::ObjToken<boo::IGraphicsBufferD> m_uniBuf;
// boo::ObjToken<boo::IShaderDataBinding> m_dataBind;
2018-12-08 05:30:43 +00:00
const CTexture* m_tex = nullptr;
size_t m_maxInsts = 0;
2017-04-07 05:35:09 +00:00
public:
2018-12-08 05:30:43 +00:00
static void Initialize();
static void Shutdown();
void draw(const std::vector<Instance>& instances, const CTexture* tex);
2017-04-07 05:35:09 +00:00
};
2021-04-10 08:42:06 +00:00
} // namespace metaforce