[Bf-blender-cvs] [869b84452a8] master: Cleanup: compiler warnings

Campbell Barton noreply at git.blender.org
Tue Aug 17 06:42:30 CEST 2021


Commit: 869b84452a8c06c505fcd265510727248b059a59
Author: Campbell Barton
Date:   Tue Aug 17 14:42:12 2021 +1000
Branches: master
https://developer.blender.org/rB869b84452a8c06c505fcd265510727248b059a59

Cleanup: compiler warnings

===================================================================

M	source/blender/python/gpu/gpu_py_buffer.c

===================================================================

diff --git a/source/blender/python/gpu/gpu_py_buffer.c b/source/blender/python/gpu/gpu_py_buffer.c
index 6e6aef4204d..0fef59d6352 100644
--- a/source/blender/python/gpu/gpu_py_buffer.c
+++ b/source/blender/python/gpu/gpu_py_buffer.c
@@ -608,7 +608,7 @@ static void pygpu_buffer_strides_calc(const eGPUDataFormat format,
 }
 
 /* Here is the buffer interface function */
-static int pygpu_buffer__bf_getbuffer(BPyGPUBuffer *self, Py_buffer *view, int flags)
+static int pygpu_buffer__bf_getbuffer(BPyGPUBuffer *self, Py_buffer *view, int UNUSED(flags))
 {
   if (view == NULL) {
     PyErr_SetString(PyExc_ValueError, "NULL view in getbuffer");
@@ -620,7 +620,7 @@ static int pygpu_buffer__bf_getbuffer(BPyGPUBuffer *self, Py_buffer *view, int f
   view->len = bpygpu_Buffer_size(self);
   view->readonly = 0;
   view->itemsize = GPU_texture_dataformat_size(self->format);
-  view->format = pygpu_buffer_formatstr(self->format);
+  view->format = (char *)pygpu_buffer_formatstr(self->format);
   view->ndim = self->shape_len;
   view->shape = self->shape;
   view->strides = MEM_mallocN(view->ndim * sizeof(*view->strides), "BPyGPUBuffer strides");



More information about the Bf-blender-cvs mailing list