2018-09-13 23:21:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-11 05:26:24 +00:00
|
|
|
#include <charcoal/Prerenderable.h>
|
2018-11-12 05:22:55 +00:00
|
|
|
#include <charcoal/InstancedElementBatch.h>
|
2018-09-13 23:21:34 +00:00
|
|
|
|
|
|
|
namespace charcoal
|
|
|
|
{
|
|
|
|
namespace builtin
|
|
|
|
{
|
2018-11-12 05:22:55 +00:00
|
|
|
template <typename VertexType, typename IndexType, int element_buffer_count, typename RenderableType = RenderableT<VertexType, IndexType> >
|
|
|
|
class Batch : public charcoal::InstancedElementBatch<VertexType, IndexType, element_buffer_count, RenderableType>
|
2018-09-13 23:21:34 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-11-12 05:22:55 +00:00
|
|
|
using charcoal::InstancedElementBatch<VertexType, IndexType, element_buffer_count, RenderableType>::InstancedElementBatch;
|
2018-09-13 23:21:34 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|