Cleanup: comments (remove outdated & update)

This commit is contained in:
2015-07-24 16:58:43 +10:00
parent 7f32601159
commit dc6153453a
2 changed files with 14 additions and 16 deletions

View File

@@ -636,7 +636,13 @@ PyTypeObject BGL_bufferType = {
NULL /*tp_del*/
};
/**
* Create a buffer object
*
* \param dimensions: An array of ndimensions integers representing the size of each dimension.
* \param initbuffer: When not NULL holds a contiguous buffer
* with the correct format from which the buffer will be initialized
*/
Buffer *BGL_MakeBuffer(int type, int ndimensions, int *dimensions, void *initbuffer)
{
Buffer *buffer;