Files
test2/source/blender/freestyle/intern/python/StrokeShader/BPy_StrokeTextureStepShader.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
813 B
C
Raw Normal View History

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup freestyle
*/
#pragma once
#include "../BPy_StrokeShader.h"
#ifdef __cplusplus
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////////////////
#include <Python.h>
extern PyTypeObject StrokeTextureStepShader_Type;
#define BPy_StrokeTextureStepShader_Check(v) \
(PyObject_IsInstance((PyObject *)v, (PyObject *)&StrokeTextureStepShader_Type))
/*---------------------------Python BPy_StrokeTextureStepShader structure definition----------*/
typedef struct {
BPy_StrokeShader py_ss;
} BPy_StrokeTextureStepShader;
///////////////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif