Skip to content

Commit

Permalink
Merge 47b1d3b into 16ea18e
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleSiefring committed Jul 6, 2019
2 parents 16ea18e + 47b1d3b commit a813c08
Show file tree
Hide file tree
Showing 2 changed files with 360 additions and 386 deletions.
2 changes: 1 addition & 1 deletion src/frame/plane.rs
Expand Up @@ -303,7 +303,7 @@ impl<T: Pixel> Plane<T> {
}

#[inline]
pub fn row_range(&self, x: isize, y: isize) -> Range<usize> {
fn row_range(&self, x: isize, y: isize) -> Range<usize> {
debug_assert!(self.cfg.yorigin as isize + y >= 0);
debug_assert!(self.cfg.xorigin as isize + x >= 0);
let base_y = (self.cfg.yorigin as isize + y) as usize;
Expand Down

0 comments on commit a813c08

Please sign in to comment.