aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GrDrawTargetTest.cpp
blob: bbc2b9146bc59e6c4c0228c5f53237a2b616d352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

/*
 * 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, context) {
    // This used to assert.
    SkString result = context->caps()->dump();
    SkASSERT(!result.isEmpty());
    SkString shaderResult = context->caps()->shaderCaps()->dump();
    SkASSERT(!shaderResult.isEmpty());
}

#endif