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

C loader targets a python alias #2586

Merged
merged 3 commits into from
Nov 24, 2023
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
23 changes: 17 additions & 6 deletions src_c/_sdl2/video.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src_c/cython/pygame/_sdl2/video.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ cdef extern from "SDL.h" nogil:


cdef extern from "pygame.h" nogil:
ctypedef class pygame.Color [object pgColorObject]:
ctypedef class pygame.color.Color [object pgColorObject]:
cdef Uint8 data[4]
cdef Uint8 len

Expand All @@ -404,7 +404,7 @@ cdef extern from "pygame.h" nogil:
PG_COLOR_HANDLE_RESTRICT_SEQ
PG_COLOR_HANDLE_ALL

ctypedef class pygame.Rect [object pgRectObject]:
ctypedef class pygame.rect.Rect [object pgRectObject]:
cdef SDL_Rect r
cdef object weakreflist

Expand Down
Loading