4 #include "renderlist.h" 6 #include "../core/log.h" 10 _materials.push_back(material);
13 void RenderList::push(
const std::shared_ptr<Mesh> &mesh,
16 command.options = options;
17 if (mesh->transparent()) {
18 command.options.transparent =
true;
20 command.vertex_array_object = mesh->vertexArrayObject();
21 if (!mesh->data().indices.empty()) {
22 command.element_count = mesh->data().indices.size();
23 command.indexed =
true;
25 command.element_count = mesh->data().positions.size();
26 command.indexed =
false;
28 command.material_index = _materials.size() - 1;
29 _commands.push_back(command);
33 auto &command = _commands.back();
34 if (command.instance_count == 0) {
35 command.first_instance = _instances.size();
36 command.instance_count = 1;
38 command.instance_count++;
40 _instances.push_back(instance);
43 void RenderList::clear() {