blob: 32e8e28930e64e2cd4a1f092149e76f00a195bb6 [file] [log] [blame]
joshualitt3f655f32015-04-29 10:01:22 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrBatchTest_DEFINED
9#define GrBatchTest_DEFINED
10
11#include "GrTestUtils.h"
12
13#ifdef GR_TEST_UTILS
14
bsalomonabd30f52015-08-13 13:34:48 -070015class GrDrawBatch;
joshualitt3f655f32015-04-29 10:01:22 -070016class GrContext;
17class SkRandom;
18
19/*
20 * This file defines some macros for testing batches, and also declares functions / objects which
21 * are generally useful for GrBatch testing
22 */
23
bsalomonabd30f52015-08-13 13:34:48 -070024// Batches should define test functions using DRAW_BATCH_TEST_DEFINE. The other macros defined
25// below are used exclusively by the test harness.
26typedef GrDrawBatch* (*BatchTestFunc)(SkRandom* random, GrContext* context);
27#define DRAW_BATCH_TEST_DEFINE(Batch) \
28 GrDrawBatch* Batch##__Test(SkRandom* random, GrContext* context)
29#define DRAW_BATCH_TEST_EXTERN(Batch) \
30 extern GrDrawBatch* Batch##__Test(SkRandom*, GrContext* context);
31#define DRAW_BATCH_TEST_ENTRY(Batch) \
joshualitt79dfb2b2015-05-11 08:58:08 -070032 Batch##__Test
bsalomonabd30f52015-08-13 13:34:48 -070033#define DRAW_BATCH_TEST_FRIEND(Batch) \
34 friend GrDrawBatch* Batch##__Test(SkRandom* random, GrContext* context);
joshualitt3f655f32015-04-29 10:01:22 -070035
bsalomonabd30f52015-08-13 13:34:48 -070036GrDrawBatch* GrRandomDrawBatch(SkRandom*, GrContext*);
joshualitt3f655f32015-04-29 10:01:22 -070037
38#endif
39#endif