implemented batch push_layer and pop_layer properly

This commit is contained in:
Noel Berry
2021-04-03 22:27:23 -07:00
parent aa6efb23b1
commit c6b5e98deb
2 changed files with 57 additions and 20 deletions

View File

@ -236,6 +236,7 @@ namespace Blah
Vector<ColorMode> m_color_mode_stack;
Vector<int> m_layer_stack;
Vector<DrawBatch> m_batches;
int m_batch_insert;
void render_single_batch(RenderPass& pass, const DrawBatch& b, const Mat4x4& matrix);
};