Basic hit testing functionality

This commit is contained in:
Patrick Walton 2013-05-30 17:28:08 -07:00
parent ea1a406589
commit f77eef5988
8 changed files with 148 additions and 20 deletions

View file

@ -28,7 +28,7 @@ use std::arc;
/// A list of rendering operations to be performed.
pub struct DisplayList<E> {
priv list: ~[DisplayItem<E>]
list: ~[DisplayItem<E>]
}
impl<E> DisplayList<E> {