1 package com.android.rs.refocus;
2 
3 /**
4  * An object that defines a blending layer for refocus rendering, which groups
5  * several consecutive depth levels.
6  */
7 public class LayerInfo {
8   public int frontDepth;
9   public int backDepth;
10 
LayerInfo(int depth)11   LayerInfo(int depth) {
12     frontDepth = depth;
13     backDepth = depth;
14   }
15 
LayerInfo(int front, int back)16   LayerInfo(int front, int back) {
17     frontDepth = front;
18     backDepth = back;
19   }
20 }
21