Cleanup: Miscellaneous cleanups to newly C++ headers

This commit is contained in:
Hans Goudey
2024-03-23 10:10:52 -04:00
parent 1dc16f909d
commit 374b80b84a
18 changed files with 70 additions and 55 deletions

View File

@@ -17,7 +17,7 @@ extern PyTypeObject BPyGPU_BufferType;
*
* For Python access to GPU functions requiring a pointer.
*/
typedef struct BPyGPUBuffer {
struct BPyGPUBuffer {
PyObject_VAR_HEAD
PyObject *parent;
@@ -33,7 +33,7 @@ typedef struct BPyGPUBuffer {
void *as_void;
} buf;
} BPyGPUBuffer;
};
size_t bpygpu_Buffer_size(BPyGPUBuffer *buffer);
/**