Blender  V3.3
gpu_py_element.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
7 #pragma once
8 
9 extern PyTypeObject BPyGPUIndexBuf_Type;
10 
11 #define BPyGPUIndexBuf_Check(v) (Py_TYPE(v) == &BPyGPUIndexBuf_Type)
12 
13 typedef struct BPyGPUIndexBuf {
14  PyObject_VAR_HEAD
15  struct GPUIndexBuf *elem;
17 
18 PyObject *BPyGPUIndexBuf_CreatePyObject(struct GPUIndexBuf *elem);
struct GPUIndexBuf GPUIndexBuf
struct BPyGPUIndexBuf BPyGPUIndexBuf
PyTypeObject BPyGPUIndexBuf_Type
PyObject * BPyGPUIndexBuf_CreatePyObject(struct GPUIndexBuf *elem)
PyObject_VAR_HEAD struct GPUIndexBuf * elem