22 lines
454 B
C++
22 lines
454 B
C++
|
/*
|
||
|
* Copyright 2020 Google Inc.
|
||
|
*
|
||
|
* Use of this source code is governed by a BSD-style license that can be
|
||
|
* found in the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
#include "tools/sk_app/WindowContext.h"
|
||
|
|
||
|
#include "include/gpu/GrDirectContext.h"
|
||
|
|
||
|
namespace sk_app {
|
||
|
|
||
|
WindowContext::WindowContext(const DisplayParams& params)
|
||
|
: fDisplayParams(params)
|
||
|
, fSampleCount(1)
|
||
|
, fStencilBits(0) {}
|
||
|
|
||
|
WindowContext::~WindowContext() {}
|
||
|
|
||
|
} //namespace sk_app
|