Cleanup: move trailing comments to avoid wrapping code
Some statements were split across multiple lines because of their trailing comments. In most cases it's clearer to put the comments above.
This commit is contained in:
@@ -105,8 +105,9 @@ void GPU_batch_copy(GPUBatch *batch_dst, GPUBatch *batch_src);
|
||||
#define GPU_batch_create(prim, verts, elem) GPU_batch_create_ex(prim, verts, elem, 0)
|
||||
#define GPU_batch_init(batch, prim, verts, elem) GPU_batch_init_ex(batch, prim, verts, elem, 0)
|
||||
|
||||
void GPU_batch_clear(
|
||||
GPUBatch *); /* Same as discard but does not free. (does not clal free callback) */
|
||||
/* Same as discard but does not free. (does not call free callback). */
|
||||
void GPU_batch_clear(GPUBatch *);
|
||||
|
||||
void GPU_batch_discard(GPUBatch *); /* verts & elem are not discarded */
|
||||
|
||||
void GPU_batch_vao_cache_clear(GPUBatch *);
|
||||
|
||||
Reference in New Issue
Block a user