| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 package com.skia; | 8 package com.skia; |
| 9 | 9 |
| 10 import android.app.ActionBar; | 10 import android.app.ActionBar; |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 mSampleView.getMSAASampleCount() == requestedSampleCount && | 270 mSampleView.getMSAASampleCount() == requestedSampleCount && |
| 271 mSampleView.getUsesOpenGLAPI() == requestedOpenGLAPI) { | 271 mSampleView.getUsesOpenGLAPI() == requestedOpenGLAPI) { |
| 272 return true; | 272 return true; |
| 273 } | 273 } |
| 274 | 274 |
| 275 createSampleView(requestedOpenGLAPI, requestedSampleCount); | 275 createSampleView(requestedOpenGLAPI, requestedSampleCount); |
| 276 | 276 |
| 277 return true; | 277 return true; |
| 278 } | 278 } |
| 279 } | 279 } |
| OLD | NEW |