Skip to content

Commit

Permalink
fix draw order UB in check_draw_order checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Nov 14, 2024
1 parent 9e28850 commit 52866b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/release_checklist/check_draw_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run_2d_layering() -> None:

# Slightly smaller blue in the middle, on the same layer as the previous.
img = np.full((192, 192, 3), (0, 0, 255), dtype="uint8")
rr.log("2d_layering/middle_blue", rr.Image(img, draw_order=1.0))
rr.log("2d_layering/middle_blue", rr.Image(img, draw_order=1.1))

rr.log(
"2d_layering/lines_behind_rect",
Expand Down

0 comments on commit 52866b8

Please sign in to comment.