Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-02-18 05:32:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-18 18:19:53 +0300
commite79916eb47a88cfb8dd8b238fd7e86d90b3459be (patch)
treecd1a3e36d1714d7d4808d82d6d2b4f35655b7642 /source/blender/python/gpu/gpu_py_buffer.h
parent10a54bbd06e3b1843b39b7bc55c24057dcaac41a (diff)
Cleanup: order shape_len after shape argument
This matches nearly all other argument ordering in Blender, including Python mathutils API.
Diffstat (limited to 'source/blender/python/gpu/gpu_py_buffer.h')
-rw-r--r--source/blender/python/gpu/gpu_py_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/gpu/gpu_py_buffer.h b/source/blender/python/gpu/gpu_py_buffer.h
index 003f1a52078..5eac5e3d309 100644
--- a/source/blender/python/gpu/gpu_py_buffer.h
+++ b/source/blender/python/gpu/gpu_py_buffer.h
@@ -48,6 +48,6 @@ typedef struct BPyGPUBuffer {
size_t bpygpu_Buffer_size(BPyGPUBuffer *buffer);
BPyGPUBuffer *BPyGPU_Buffer_CreatePyObject(const int format,
- const int shape_len,
const Py_ssize_t *shape,
+ const int shape_len,
void *buffer);