-
Notifications
You must be signed in to change notification settings - Fork 433
Initial refactor of the graphics pipeline #4185
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
Initial refactor of the graphics pipeline #4185
Conversation
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.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| currentColor = -1; | ||
| g.setAntiAliased(false); | ||
| g.setAntiAliasedText(false); | ||
| g.fillRect(getX(), getY(), getWidth(), getHeight()); | ||
| drawContent(g, getBounds()); |
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.
Avoid double-applying component translation in CleanPaintComponent
The graphics context is already translated to the component origin before paint() runs, but the clearing/drawing logic uses getX()/getY() (and passes getBounds() containing those offsets) when filling and rendering. In the 2×2 grid, the three components whose X/Y are non‑zero end up drawing content offset by their position twice, so their aliased/anti‑aliased panels render off-screen and the resulting screenshots miss those variants. Use component-local coordinates (0,0,width,height) when painting.
Useful? React with 👍 / 👎.
✅ Continuous Quality ReportTest & Coverage
Static Analysis
Generated automatically by the PR CI workflow. |
Android screenshot updatesCompared 17 screenshots: 0 matched, 3 updated, 14 missing references.
Native Android coverage
|
Improved screenshots to include device themes and some spacing


































No description provided.