3062759ffd
Bug: skia:12466 Change-Id: I401a185d818a964327d323b9ebcd0850ec0b1c9b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/457318 Reviewed-by: Jim Van Verth <jvanverth@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
18 lines
446 B
C++
18 lines
446 B
C++
/*
|
|
* Copyright 2021 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "tests/Test.h"
|
|
|
|
#include "experimental/graphite/include/Context.h"
|
|
#include "experimental/graphite/src/ContextPriv.h"
|
|
|
|
DEF_GRAPHITE_TEST_FOR_CONTEXTS(CapsTest, reporter, context) {
|
|
// TODO: Jim takes this over
|
|
auto caps = context->priv().caps();
|
|
REPORTER_ASSERT(reporter, caps);
|
|
}
|