Skip to content

Commit 363fa59

Browse files
committed
Add interface for _sdl2.video classes
1 parent 363a193 commit 363fa59

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src_c/renderer_image.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ static PyTypeObject pgImage_Type = {
1717
.tp_doc = DOC_SDL2_VIDEO_IMAGE, .tp_methods = image_methods,
1818
//.tp_init = (initproc)image_init,
1919
.tp_new = PyType_GenericNew, .tp_getset = image_getset};
20-
21-
static PyMethodDef _image_methods[] = {{NULL, NULL, 0, NULL}};

src_c/texture.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ static PyTypeObject pgTexture_Type = {
1717
.tp_doc = DOC_SDL2_VIDEO_TEXTURE, .tp_methods = texture_methods,
1818
//.tp_init = (initproc)texture_init,
1919
.tp_new = PyType_GenericNew, .tp_getset = texture_getset};
20-
21-
static PyMethodDef _texture_methods[] = {{NULL, NULL, 0, NULL}};

0 commit comments

Comments
 (0)