blob: c8492bc3ad29f6f65a987407566e7b7e1f0b8c46 [file] [log] [blame]
/*
* 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