You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
454 B
22 lines
454 B
/*
|
|
* 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
|