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

Release v0.4.0 #795

Merged
merged 16 commits into from
Aug 10, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix render pass image util
  • Loading branch information
carson-katri committed Jun 3, 2024
commit 8779c3bc9a3efe4c23c0ced2a74fcbf098c10e1b
2 changes: 1 addition & 1 deletion image_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def np_to_render_pass(
array = to_dtype(array, dtype)
if top_to_bottom:
array = np.flipud(array)
render_pass.rect.foreach_set(array.reshape(-1, render_pass.channels))
render_pass.rect.foreach_set(array.reshape(-1))


def _mode(array, mode):
Expand Down