filename | test/testdata.h |
changeset | 561:533f6b478071 |
prev | 263:6f641270b2aa |
author | nkeynes |
date | Wed Feb 15 17:54:51 2012 +1000 (11 years ago) |
permissions | -rw-r--r-- |
last change | Use GL_TEXTURE_2D instead of GL_TEXTURE_RECTANGLE_ARB for frame buffers, for systems that don't provide the latter (and there's not really much difference anyway). Add macro wrangling for GL_DEPTH24_STENCIL8 format |
view | annotate | diff | log | raw |
1 /*
2 * $Id$
3 *
4 * Test data loader
5 *
6 * Copyright (c) 2006 Nathan Keynes.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
19 #include <stdio.h>
21 #define MAX_DATA_BLOCKS 16
23 typedef struct test_data_block {
24 const char *name;
25 unsigned int length;
26 char *data;
27 } *test_data_block_t;
29 typedef struct test_data {
30 const char *test_name;
31 struct test_data *next;
32 struct test_data_block item[MAX_DATA_BLOCKS];
33 } *test_data_t;
35 typedef int (*test_func_t)();
36 int run_tests( test_func_t *tests );
38 test_data_t load_test_dataset( FILE *f );
39 void free_test_dataset( test_data_t dataset );
40 void dump_test_dataset( FILE *f, test_data_t dataset );
41 int test_block_compare( test_data_block_t expect, char *actual, int actual_length );
42 test_data_block_t get_test_data( test_data_t dataset, char *item_name );
.