Robert Phillips | ed65339 | 2020-07-10 13:55:21 -0400 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2020 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "tools/sk_app/WindowContext.h" |
| 9 | |
| 10 | #include "include/gpu/GrDirectContext.h" |
| 11 | |
| 12 | namespace sk_app { |
| 13 | |
| 14 | WindowContext::WindowContext(const DisplayParams& params) |
| 15 | : fDisplayParams(params) |
| 16 | , fSampleCount(1) |
| 17 | , fStencilBits(0) {} |
| 18 | |
| 19 | WindowContext::~WindowContext() {} |
| 20 | |
| 21 | } //namespace sk_app |