8b7451aaf6
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1966013002 Review-Url: https://codereview.chromium.org/1966013002
24 lines
563 B
C++
24 lines
563 B
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Test.h"
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrCaps.h"
|
|
#include "GrContext.h"
|
|
#include "GrGpu.h"
|
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(GrDrawTargetPrint, reporter, ctxInfo) {
|
|
// This used to assert.
|
|
SkString result = ctxInfo.grContext()->caps()->dump();
|
|
SkASSERT(!result.isEmpty());
|
|
SkString shaderResult = ctxInfo.grContext()->caps()->shaderCaps()->dump();
|
|
SkASSERT(!shaderResult.isEmpty());
|
|
}
|
|
|
|
#endif
|