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 WindowContext(const DisplayParams & params)14WindowContext::WindowContext(const DisplayParams& params) 15 : fDisplayParams(params) 16 , fSampleCount(1) 17 , fStencilBits(0) {} 18 ~WindowContext()19WindowContext::~WindowContext() {} 20 21 } //namespace sk_app 22