Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed PyTypeObject instantiations #237

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PyGLM/types/glmArray/glmArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static PyNumberMethods glmArrayNumMethods = {
};

static PyTypeObject glmArrayType = {
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.array", // tp_name
sizeof(glmArray), // tp_basicsize
0, // tp_itemsize
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat2x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat2x2IterType = {

static PyGLMTypeObject hdmat2x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat2x2", /* tp_name */
sizeof(mat<2, 2, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat2x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat2x3IterType = {

static PyGLMTypeObject hdmat2x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat2x3", /* tp_name */
sizeof(mat<2, 3, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat2x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat2x4IterType = {

static PyGLMTypeObject hdmat2x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat2x4", /* tp_name */
sizeof(mat<2, 4, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat3x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat3x2IterType = {

static PyGLMTypeObject hdmat3x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat3x2", /* tp_name */
sizeof(mat<3, 2, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat3x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat3x3IterType = {

static PyGLMTypeObject hdmat3x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat3x3", /* tp_name */
sizeof(mat<3, 3, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat3x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat3x4IterType = {

static PyGLMTypeObject hdmat3x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat3x4", /* tp_name */
sizeof(mat<3, 4, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat4x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat4x2IterType = {

static PyGLMTypeObject hdmat4x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat4x2", /* tp_name */
sizeof(mat<4, 2, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat4x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat4x3IterType = {

static PyGLMTypeObject hdmat4x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat4x3", /* tp_name */
sizeof(mat<4, 3, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/double/mat4x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hdmat4x4IterType = {

static PyGLMTypeObject hdmat4x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmat4x4", /* tp_name */
sizeof(mat<4, 4, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat2x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat2x2IterType = {

static PyGLMTypeObject hfmat2x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat2x2", /* tp_name */
sizeof(mat<2, 2, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat2x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat2x3IterType = {

static PyGLMTypeObject hfmat2x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat2x3", /* tp_name */
sizeof(mat<2, 3, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat2x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat2x4IterType = {

static PyGLMTypeObject hfmat2x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat2x4", /* tp_name */
sizeof(mat<2, 4, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat3x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat3x2IterType = {

static PyGLMTypeObject hfmat3x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat3x2", /* tp_name */
sizeof(mat<3, 2, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat3x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat3x3IterType = {

static PyGLMTypeObject hfmat3x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat3x3", /* tp_name */
sizeof(mat<3, 3, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat3x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat3x4IterType = {

static PyGLMTypeObject hfmat3x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat3x4", /* tp_name */
sizeof(mat<3, 4, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat4x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat4x2IterType = {

static PyGLMTypeObject hfmat4x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat4x2", /* tp_name */
sizeof(mat<4, 2, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat4x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat4x3IterType = {

static PyGLMTypeObject hfmat4x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat4x3", /* tp_name */
sizeof(mat<4, 3, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/float/mat4x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject hfmat4x4IterType = {

static PyGLMTypeObject hfmat4x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mat4x4", /* tp_name */
sizeof(mat<4, 4, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat2x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat2x2IterType = {

static PyGLMTypeObject himat2x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat2x2", /* tp_name */
sizeof(mat<2, 2, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat2x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat2x3IterType = {

static PyGLMTypeObject himat2x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat2x3", /* tp_name */
sizeof(mat<2, 3, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat2x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat2x4IterType = {

static PyGLMTypeObject himat2x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat2x4", /* tp_name */
sizeof(mat<2, 4, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat3x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat3x2IterType = {

static PyGLMTypeObject himat3x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat3x2", /* tp_name */
sizeof(mat<3, 2, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat3x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat3x3IterType = {

static PyGLMTypeObject himat3x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat3x3", /* tp_name */
sizeof(mat<3, 3, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat3x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat3x4IterType = {

static PyGLMTypeObject himat3x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat3x4", /* tp_name */
sizeof(mat<3, 4, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat4x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat4x2IterType = {

static PyGLMTypeObject himat4x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat4x2", /* tp_name */
sizeof(mat<4, 2, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat4x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat4x3IterType = {

static PyGLMTypeObject himat4x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat4x3", /* tp_name */
sizeof(mat<4, 3, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/int/mat4x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject himat4x4IterType = {

static PyGLMTypeObject himat4x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imat4x4", /* tp_name */
sizeof(mat<4, 4, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat2x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat2x2IterType = {

static PyGLMTypeObject humat2x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat2x2", /* tp_name */
sizeof(mat<2, 2, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat2x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat2x3IterType = {

static PyGLMTypeObject humat2x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat2x3", /* tp_name */
sizeof(mat<2, 3, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat2x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat2x4IterType = {

static PyGLMTypeObject humat2x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat2x4", /* tp_name */
sizeof(mat<2, 4, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat3x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat3x2IterType = {

static PyGLMTypeObject humat3x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat3x2", /* tp_name */
sizeof(mat<3, 2, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat3x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat3x3IterType = {

static PyGLMTypeObject humat3x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat3x3", /* tp_name */
sizeof(mat<3, 3, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat3x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat3x4IterType = {

static PyGLMTypeObject humat3x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat3x4", /* tp_name */
sizeof(mat<3, 4, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat4x2.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat4x2IterType = {

static PyGLMTypeObject humat4x2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat4x2", /* tp_name */
sizeof(mat<4, 2, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat4x3.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat4x3IterType = {

static PyGLMTypeObject humat4x3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat4x3", /* tp_name */
sizeof(mat<4, 3, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mat/uint/mat4x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static PyTypeObject humat4x4IterType = {

static PyGLMTypeObject humat4x4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.umat4x4", /* tp_name */
sizeof(mat<4, 4, glm::u32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/double/mvec2.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject hdmvec2IterType = {

static PyGLMTypeObject hdmvec2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmvec2", /* tp_name */
sizeof(mvec<2, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/double/mvec3.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject hdmvec3IterType = {

static PyGLMTypeObject hdmvec3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmvec3", /* tp_name */
sizeof(mvec<3, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/double/mvec4.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject hdmvec4IterType = {

static PyGLMTypeObject hdmvec4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.dmvec4", /* tp_name */
sizeof(mvec<4, double>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/float/mvec2.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject hfmvec2IterType = {

static PyGLMTypeObject hfmvec2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mvec2", /* tp_name */
sizeof(mvec<2, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/float/mvec3.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject hfmvec3IterType = {

static PyGLMTypeObject hfmvec3GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mvec3", /* tp_name */
sizeof(mvec<3, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/float/mvec4.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject hfmvec4IterType = {

static PyGLMTypeObject hfmvec4GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.mvec4", /* tp_name */
sizeof(mvec<4, float>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
2 changes: 1 addition & 1 deletion PyGLM/types/mvec/int/mvec2.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static PyTypeObject himvec2IterType = {

static PyGLMTypeObject himvec2GLMType = {
{
PyObject_HEAD_INIT(NULL)
PyVarObject_HEAD_INIT(NULL, 0)
"glm.imvec2", /* tp_name */
sizeof(mvec<2, glm::i32>), /* tp_basicsize */
0, /* tp_itemsize */
Expand Down
Loading
Loading