initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#ifndef HYDRAMATERIALSYSTEM
|
||||
#define HYDRAMATERIALSYSTEM
|
||||
|
||||
#include "../../engine/HydraObject.h"
|
||||
#include "../HydraSystem.h"
|
||||
#include <GLMIncludes.h>
|
||||
#include <queue>
|
||||
#include <vector>
|
||||
|
||||
|
||||
|
||||
class HydraMaterialSystem : public HydraSystem
|
||||
{
|
||||
public:
|
||||
void Initialise() override;
|
||||
protected:
|
||||
void InitialiseComponent(HydraID entity_id) override;
|
||||
virtual void UpdateSystem(float delta_t_seconds);
|
||||
private:
|
||||
void _WriteToGPU();
|
||||
HydraID m_material_buffer_id = INVALID_HYDRA_ID;
|
||||
HydraID m_texture_buffer_id = INVALID_HYDRA_ID;
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif /* HYDRAMATERIALSYSTEM */
|
||||
Reference in New Issue
Block a user