-
Notifications
You must be signed in to change notification settings - Fork 32
Add a way to print a list of sprite #85
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
Conversation
| gs_stq_t st; | ||
| u64 tag; | ||
| }; | ||
| } __attribute__((packed, aligned(8))) gs_stq; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It had wrong alignment it should be 16 instead, but let the compiler to take it based on u128
| u64 tag; | ||
| }; | ||
| } __attribute__((packed,aligned(8))) gs_uv; | ||
| } __attribute__((packed)) gs_uv; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It had wrong alignment it should be 16 instead, but let the compiler to take it based on u128
| u64 tag; | ||
| }; | ||
| } __attribute__((packed,aligned(8))) gs_rgbaq; | ||
| } __attribute__((packed)) gs_rgbaq; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It had wrong alignment it should be 16 instead, but let the compiler to take it based on u128
uyjulian
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm
d62f47a to
9dbd3b0
Compare
Description
This PR does:
gsKit_prim_list_sprite_gouraud_3dfor allowing to draw a list of spritesgsKit_clearfor usinggsKit_prim_list_sprite_gouraud_3dbetter.Cheers