blob: 581657a973da96086076255b430b5764a74ed551 [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"
Jim Van Verth7bb0ff02021-09-30 16:27:30 -040011#ifdef SK_GRAPHITE_ENABLED
12#include "experimental/graphite/include/Context.h"
13#endif
Robert Phillipsed653392020-07-10 13:55:21 -040014
15namespace sk_app {
16
17WindowContext::WindowContext(const DisplayParams& params)
Jim Van Verth7bb0ff02021-09-30 16:27:30 -040018 : fDisplayParams(params) {}
Robert Phillipsed653392020-07-10 13:55:21 -040019
20WindowContext::~WindowContext() {}
21
22} //namespace sk_app