Delete some obsolete comments

This commit is contained in:
Richard Feldman 2022-02-23 21:36:05 -05:00
parent 7f1f22f81a
commit 39229013ea
No known key found for this signature in database
GPG Key ID: 7E4127D1E4241798

View File

@ -342,74 +342,6 @@ fn begin_render_pass<'a>(
}
pub fn render(title: RocStr, root: RocElem) {
// let rects_behind = vec![
// RectElt {
// rect: Rect {
// top_left_coords: (20.0, 20.0).into(),
// width: 200.0,
// height: 100.0
// },
// color: (0.4, 0.2, 0.5, 1.0),
// border_width: 5.0,
// border_color: (0.75, 0.5, 0.5, 1.0)
// },
// RectElt {
// rect: Rect {
// top_left_coords: (420.0, 420.0).into(),
// width: 150.0,
// height: 150.0
// },
// color: (0.9, 0.2, 0.5, 1.0),
// border_width: 10.0,
// border_color: (0.2, 0.5, 0.5, 1.0)
// },
// RectElt {
// rect: Rect {
// top_left_coords: (571.0, 420.0).into(),
// width: 150.0,
// height: 150.0
// },
// color: (0.2, 0.2, 0.5, 1.0),
// border_width: 10.0,
// border_color: (0.2, 0.5, 0.5, 1.0)
// }
// ];
// let texts_behind = vec![
// Text {
// position: (50.0, 50.0).into(),
// color: colors::WHITE,
// text: "Back",
// size: 40.0,
// ..Default::default()
// }
// ];
// let rects_front = vec![
// RectElt {
// rect: Rect {
// top_left_coords: (30.0, 30.0).into(),
// width: 70.0,
// height: 70.0
// },
// color: (0.7, 0.2, 0.2, 0.6),
// border_width: 10.0,
// border_color: (0.75, 0.5, 0.5, 1.0)
// }
// ];
// let texts_front = vec![
// Text {
// position: (70.0, 70.0).into(),
// color: colors::WHITE,
// text: "Front",
// size: 40.0,
// ..Default::default()
// }
// ];
// let rects_and_texts = RectsAndTexts::init(rects_behind, texts_behind, rects_front, texts_front);
run_event_loop(title.as_str(), root).expect("Error running event loop");
}