Blender V5.0
BPy_StrokeShader.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#pragma once
10
11extern "C" {
12#include <Python.h>
13}
14
16
18
20
21extern PyTypeObject StrokeShader_Type;
22
23#define BPy_StrokeShader_Check(v) \
24 (PyObject_IsInstance((PyObject *)v, (PyObject *)&StrokeShader_Type))
25
26/*---------------------------Python BPy_StrokeShader structure definition----------*/
27typedef struct {
28 PyObject_HEAD
31
32/*---------------------------Python BPy_StrokeShader visible prototypes-----------*/
33
34int StrokeShader_Init(PyObject *module);
35
PyTypeObject StrokeShader_Type
int StrokeShader_Init(PyObject *module)
Configuration definitions.
Class defining StrokeShader.
static struct PyModuleDef module
Definition python.cpp:796
PyObject_HEAD Freestyle::StrokeShader * ss