blob: b4704673860d9543ffcd56fa3de7191bdcf9d0b4 [file] [log] [blame]
Robert Phillipsed653392020-07-10 13:55:21 -04001/*
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
12namespace sk_app {
13
14WindowContext::WindowContext(const DisplayParams& params)
15 : fDisplayParams(params)
16 , fSampleCount(1)
17 , fStencilBits(0) {}
18
19WindowContext::~WindowContext() {}
20
21} //namespace sk_app