AA branch: added ImDrawData::DeIndexAllBuffers() helper (#254)

This commit is contained in:
ocornut
2015-07-05 22:09:55 -06:00
parent b2b616be00
commit 0676efd37f
2 changed files with 26 additions and 0 deletions

View File

@ -1095,6 +1095,9 @@ struct ImDrawData
int cmd_lists_count;
int total_vtx_count; // For convenience, sum of all cmd_lists vtx_buffer.size()
int total_idx_count; // For convenience, sum of all cmd_lists idx_buffer.size()
// Functions
void DeIndexAllBuffers(); // For backward compatibility: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!
};
// Load and rasterize multiple TTF fonts into a same texture.