mirror of https://github.com/auygun/kaliber.git
40 lines
719 B
C++
40 lines
719 B
C++
#ifndef ENGINE_RENDERER_GEOMETRY_H
|
|
#define ENGINE_RENDERER_GEOMETRY_H
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "engine/renderer/render_resource.h"
|
|
#include "engine/renderer/renderer_types.h"
|
|
|
|
namespace eng {
|
|
|
|
class Renderer;
|
|
class Mesh;
|
|
|
|
class Geometry : public RenderResource {
|
|
public:
|
|
Geometry(Renderer* renderer);
|
|
~Geometry();
|
|
|
|
void Create(std::unique_ptr<Mesh> mesh);
|
|
|
|
void Destroy();
|
|
|
|
void Draw();
|
|
|
|
const VertexDescripton& vertex_description() const {
|
|
return vertex_description_;
|
|
}
|
|
|
|
Primitive primitive() { return primitive_; }
|
|
|
|
private:
|
|
VertexDescripton vertex_description_;
|
|
Primitive primitive_ = kPrimitive_Invalid;
|
|
};
|
|
|
|
} // namespace eng
|
|
|
|
#endif // ENGINE_RENDERER_GEOMETRY_H
|