23 lines
410 B
C++
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);
|