Files
test2/source/blender/python/gpu/gpu_py_element.hh
2024-03-23 10:10:52 -04:00

23 lines
410 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bpygpu
*/
#pragma once
struct GPUIndexBuf;
extern PyTypeObject BPyGPUIndexBuf_Type;
#define BPyGPUIndexBuf_Check(v) (Py_TYPE(v) == &BPyGPUIndexBuf_Type)
struct BPyGPUIndexBuf {
PyObject_VAR_HEAD
GPUIndexBuf *elem;
};
PyObject *BPyGPUIndexBuf_CreatePyObject(GPUIndexBuf *elem);