MaxstARSDK  3.5.0
All Classes Functions Variables
CameraSurfaceView.java
1 /*
2  * Copyright 2016 Maxst, Inc. All Rights Reserved.
3  */
4 package com.maxst.ar;
5 
6 import android.content.Context;
7 import android.view.SurfaceView;
8 
9 class CameraSurfaceView extends SurfaceView {
10 
11  private static final String TAG = CameraSurfaceView.class.getSimpleName();
12 
13  public CameraSurfaceView(Context context) {
14  super(context);
15  }
16 }