-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Added opengl support for --format png output #1982
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
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
039bd0d
Add png output support for opengl
fb2a2f0
Handle when interactive embed should launch
d6706b1
Handle when window should be created
7ac0c1f
Remove unused import
84746fe
Remove confusing field
50a2e12
Merge branch 'main' into add_png_opengl_support
k4pran e44ed7e
Resolve conflicts
10c0309
Merge branch 'add_png_opengl_support' of https://github.com/ryanmccau…
af75283
Avoid creating window when any format is set
787d891
Revert removing manim import
0b95889
Remove second log for interactive_embed
4f9d87f
Add force_window flag
604ff11
temp skip tests due to opengl context issue
1a4636e
Fix context issue
7f8a183
Merge branch 'main' of https://github.com/ManimCommunity/manim into a…
dad9f8f
Try manually closing window in opengl tests
a76c323
Test disabling parallel runs
4db3f04
Test disabling parallel runs
60d2878
Try clearing frame buffer on finish
7d1cfc6
revert clear
d1c3544
Skip tests that pass locally but fail windows CI
6046258
Reenable opengl tests
b87f966
Remove stdin closed check
d042086
Merge branch 'main' of https://github.com/ManimCommunity/manim into a…
657f2e4
Skip flakey test
6f12024
Merge branch 'main' into add_png_opengl_support
hydrobeam 49c5948
Merge branch 'main' of https://github.com/ManimCommunity/manim into a…
20ff11a
Stop window creation when save_last_frame is set
cf2eb9b
Merge branch 'main' into add_png_opengl_support
hydrobeam 4134ae4
Merge branch 'main' into add_png_opengl_support
k4pran 5b5284e
Update config path
eff59ff
Merge branch 'main' into add_png_opengl_support
k4pran File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@naveen521kk I added this argument as it seems like it would allow parallelization but, for tests in the same file they would share a worker to avoid issues with multiple opengl windows running at the same time. Does this make sense to you? got the information here - https://stackoverflow.com/questions/4637036/is-there-a-way-to-control-how-pytest-xdist-runs-tests-in-parallel
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.
Looks good